WP_Plugin_Install_List_Table::display_tablenav
Method of the class: WP_Plugin_Install_List_Table{}
Hooks from the method
Returns
null. Nothing (null).
Usage
// protected - for code of main (parent) or child class $result = $this->display_tablenav( $which );
- $which(string) (required)
- .
Notes
- Global. String.
$tab
WP_Plugin_Install_List_Table::display_tablenav() WP Plugin Install List Table::display tablenav code WP 7.0
<?php
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
}
}