ActionScheduler_AdminView::get_list_table
Get the admin UI object and process any requested actions.
Method of the class: ActionScheduler_AdminView{}
No Hooks.
Returns
ActionScheduler_ListTable.
Usage
// protected - for code of main (parent) or child class $result = $this->get_list_table();
ActionScheduler_AdminView::get_list_table() ActionScheduler AdminView::get list table code WC 10.3.6
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;
}