ActionScheduler_Abstract_ListTable::display_page
Render the list table page, including header, notices, status filters and table.
Method of the class: ActionScheduler_Abstract_ListTable{}
No Hooks.
Returns
null. Nothing (null).
Usage
$ActionScheduler_Abstract_ListTable = new ActionScheduler_Abstract_ListTable(); $ActionScheduler_Abstract_ListTable->display_page();
ActionScheduler_Abstract_ListTable::display_page() ActionScheduler Abstract ListTable::display page code WC 10.8.1
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>';
}