ActionScheduler_Abstract_ListTable::get_request_query_args_to_persist
Querystring arguments to persist between form submissions.
Method of the class: ActionScheduler_Abstract_ListTable{}
No Hooks.
Returns
String[].
Usage
// protected - for code of main (parent) or child class $result = $this->get_request_query_args_to_persist();
Changelog
| Since 3.7.3 | Introduced. |
ActionScheduler_Abstract_ListTable::get_request_query_args_to_persist() ActionScheduler Abstract ListTable::get request query args to persist code WC 10.8.1
protected function get_request_query_args_to_persist() {
return array_merge(
$this->sort_by,
array(
'page',
'status',
'tab',
)
);
}