ActionScheduler_AdminView_Deprecated::list_table_views()publicWC 1.0

Customise the post status related views displayed on the Scheduled Actions administration screen.

Method of the class: ActionScheduler_AdminView_Deprecated{}

No Hooks.

Return

Array. $views An associative array of views and view labels which can be used to filter the 'scheduled-action' posts displayed on the Scheduled Actions administration screen.

Usage

$ActionScheduler_AdminView_Deprecated = new ActionScheduler_AdminView_Deprecated();
$ActionScheduler_AdminView_Deprecated->list_table_views( $views );
$views(array) (required)
An associative array of views and view labels which can be used to filter the 'scheduled-action' posts displayed on the Scheduled Actions administration screen.

ActionScheduler_AdminView_Deprecated::list_table_views() code WC 8.7.0

public function list_table_views( $views ) {
	_deprecated_function( __METHOD__, '2.0.0' );
	return $views;
}