ActionScheduler_Abstract_ListTable::get_request_query_args_to_persistprotectedWC 3.7.3

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() code WC 9.8.5

protected function get_request_query_args_to_persist() {
	return array_merge(
		$this->sort_by,
		array(
			'page',
			'status',
			'tab',
		)
	);
}