ActionScheduler_ListTable::display_filter_by_status()protectedWC 1.0

Prints the available statuses so the user can click to filter.

Method of the class: ActionScheduler_ListTable{}

No Hooks.

Return

null. Nothing (null).

Usage

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

ActionScheduler_ListTable::display_filter_by_status() code WC 8.7.0

protected function display_filter_by_status() {
	$this->status_counts = $this->store->action_counts() + $this->store->extra_action_counts();
	parent::display_filter_by_status();
}