WP_Plugin_Install_List_Table::display_tablenav() –

You appear to be a bot. Output may be restricted

Description

Usage

WP_Plugin_Install_List_Table::display_tablenav( $which );

Parameters

$which
( string ) required

Returns

void

Source

File name: wordpress/wp-admin/includes/class-wp-plugin-install-list-table.php
Lines:

1 to 30 of 30
  protected function display_tablenav( $which ) {
    if ( 'featured' === $GLOBALS['tab'] ) {
      return;
    }

    if ( 'top' === $which ) {
      wp_referer_field();
      ?>
			<div class="tablenav top">
				<div class="alignleft actions">
					<?php
          
/**
 * Fires before the Plugin Install table header pagination is displayed.
 *
 * @since 2.7.0
 */
          do_action( 'install_plugins_table_header' );
          ?>
				</div>
				<?php $this->pagination( $which ); ?>
				<br class="clear" />
			</div>
		<?php } else { ?>
			<div class="tablenav bottom">
				<?php $this->pagination( $which ); ?>
				<br class="clear" />
			</div>
			<?php
    }
  }
 

 View on GitHub View on Trac