ActionScheduler_AdminView_Deprecated::list_table_views()publicWC 1.0

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

Метод класса: ActionScheduler_AdminView_Deprecated{}

Хуков нет.

Возвращает

Массив. $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.

Использование

$ActionScheduler_AdminView_Deprecated = new ActionScheduler_AdminView_Deprecated();
$ActionScheduler_AdminView_Deprecated->list_table_views( $views );
$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.

Код ActionScheduler_AdminView_Deprecated::list_table_views() WC 8.7.0

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