ActionScheduler_Abstract_ListTable::display_page()publicWC 1.0

Render the list table page, including header, notices, status filters and table.

Method of the class: ActionScheduler_Abstract_ListTable{}

No Hooks.

Return

null. Nothing (null).

Usage

$ActionScheduler_Abstract_ListTable = new ActionScheduler_Abstract_ListTable();
$ActionScheduler_Abstract_ListTable->display_page();

ActionScheduler_Abstract_ListTable::display_page() code WC 8.7.0

public function display_page() {
	$this->prepare_items();

	echo '<div class="wrap">';
	$this->display_header();
	$this->display_admin_notices();
	$this->display_filter_by_status();
	$this->display_table();
	echo '</div>';
}