You appear to be a bot. Output may be restricted
Description
Renders the table list, we override the original class to render the table inside a form and to render any needed HTML (like the search box). By doing so the callee of a function can simple forget about any extra HTML.
Usage
ActionScheduler_Abstract_ListTable::display_table();
Parameters
Returns
void
Source
File name: woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_Abstract_ListTable.php
Lines: 1 to 14 of 14
protected function display_table() { echo '<form id="' . esc_attr( $this->_args['plural'] ) . '-filter" method="get">'; foreach ( $_GET as $key => $value ) { if ( '_' === $key[0] || 'paged' === $key ) { continue; } echo '<input type="hidden" name="' . esc_attr( $key ) . '" value="' . esc_attr( $value ) . '" />'; } if ( ! empty( $this->search_by ) ) { echo $this->search_box( $this->get_search_box_button_text(), 'plugin' ); // WPCS: XSS OK } parent::display(); echo '</form>'; }