Give_API_Keys_Table::display_tablenav PHP Method

display_tablenav() protected method

Generate the table navigation above or below the table
Since: 3.1.0
protected display_tablenav ( string $which )
$which string
    protected function display_tablenav($which)
    {
        if ('top' === $which) {
            wp_nonce_field('bulk-' . $this->_args['plural']);
        }
        ?>
		<div class="tablenav <?php 
        echo esc_attr($which);
        ?>
">

			<div class="alignleft actions bulkactions">
				<?php 
        $this->bulk_actions($which);
        ?>
			</div>

			<?php 
        $this->extra_tablenav($which);
        $this->pagination($which);
        ?>

			<br class="clear" />
		</div>
		<?php 
    }