You appear to be a bot. Output may be restricted
Description
Get the current action selected from the bulk actions dropdown.
Usage
$string|false = BW_List_Table::current_action();
Parameters
Returns
string|false The action name or False if no action was selectedSource
File name: oik/admin/class-bw-list-table.phpLines:
1 to 12 of 12
public function current_action() { if ( isset( $_REQUEST['filter_action'] ) && ! empty( $_REQUEST['filter_action'] ) ) return false; if ( isset( $_REQUEST['action'] ) && -1 != $_REQUEST['action'] ) return $_REQUEST['action']; if ( isset( $_REQUEST['action2'] ) && -1 != $_REQUEST['action2'] ) return $_REQUEST['action2']; return false; }View on GitHub View on Trac