Give_API_Keys_Table::display_tablenav PHP 메소드

display_tablenav() 보호된 메소드

Generate the table navigation above or below the table
부터: 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 
    }