ActionScheduler_AdminView::get_list_table
Get the admin UI object and process any requested actions.
Метод класса: ActionScheduler_AdminView{}
Хуков нет.
Возвращает
ActionScheduler_ListTable.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_list_table();
Код ActionScheduler_AdminView::get_list_table() ActionScheduler AdminView::get list table WC 11.1.0
protected function get_list_table() {
if ( null === $this->list_table ) {
$this->list_table = new ActionScheduler_ListTable( ActionScheduler::store(), ActionScheduler::logger(), ActionScheduler::runner() );
$this->list_table->process_actions();
}
return $this->list_table;
}