WC_Admin_Log_Table_List::extra_tablenav( string $which )

Extra controls to be displayed between bulk actions and pagination.


Description Description


Parameters Parameters

$which

(Required)


Top ↑

Source Source

File: includes/admin/class-wc-admin-log-table-list.php

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


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.