list->prepare_items(); } /** * Save products per page option * * @since 1.1.2 * * @param bool|int $status Screen option value. Default false to skip. * @param string $option The option name. * @param int $value The number of rows to use. * * @return mixed */ public function set_screen_option( $status, $option, $value ) { return $value; } /** * Enable Screen options creating the list table before the Screen option panel is rendered and enable * "per page" option. Also add help tabs and help sidebar * * @since 1.1.2 */ abstract public function screen_options(); /** * Setter for the AtumListTable object * * @since 1.2.5 * * @param AtumListTable $list */ public function set_list_table( AtumListTable $list ) { if ( is_a( $list, '\Atum\Components\AtumListTables\AtumListTable' ) ) { $this->list = $list; } } }