ActionScheduler_AdminView::get_list_table()protectedWC 1.0

Get the admin UI object and process any requested actions.

Method of the class: ActionScheduler_AdminView{}

No Hooks.

Return

ActionScheduler_ListTable.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_list_table();

ActionScheduler_AdminView::get_list_table() code WC 8.7.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;
}