WC_Admin_Log_Table_List::extra_tablenav
Extra controls to be displayed between bulk actions and pagination.
Method of the class: WC_Admin_Log_Table_List{}
No Hooks.
Returns
null. Nothing (null).
Usage
// protected - for code of main (parent) or child class $result = $this->extra_tablenav( $which );
- $which(string) (required)
- .
WC_Admin_Log_Table_List::extra_tablenav() WC Admin Log Table List::extra tablenav code WC 10.4.3
protected function extra_tablenav( $which ) {
if ( 'top' === $which ) {
echo '<div class="alignleft actions">';
$this->level_dropdown();
$this->source_dropdown();
submit_button( __( 'Filter', 'woocommerce' ), '', 'filter-action', false );
echo '</div>';
}
}