ActionScheduler_ListTable::set_items_per_page_option()publicWC 1.0

Handles setting the items_per_page option for this screen.

Method of the class: ActionScheduler_ListTable{}

No Hooks.

Return

Int.

Usage

$ActionScheduler_ListTable = new ActionScheduler_ListTable();
$ActionScheduler_ListTable->set_items_per_page_option( $status, $option, $value );
$status(mixed) (required)
Default false (to skip saving the current option).
$option(string) (required)
Screen option name.
$value(int) (required)
Screen option value.

ActionScheduler_ListTable::set_items_per_page_option() code WC 8.7.0

public function set_items_per_page_option( $status, $option, $value ) {
	return $value;
}