WC_Admin_Log_Table_List::extra_tablenav()protectedWC 1.0

Extra controls to be displayed between bulk actions and pagination.

Method of the class: WC_Admin_Log_Table_List{}

No Hooks.

Return

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() code WC 9.7.1

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>';
	}
}