WP_MS_Users_List_Table::pagination
Method of the class: WP_MS_Users_List_Table{}
No Hooks.
Returns
null. Nothing (null).
Usage
// protected - for code of main (parent) or child class $result = $this->pagination( $which );
- $which(string) (required)
- .
Notes
- Global. String.
$modeList table view mode.
WP_MS_Users_List_Table::pagination() WP MS Users List Table::pagination code WP 7.0
protected function pagination( $which ) {
global $mode;
parent::pagination( $which );
if ( 'top' === $which ) {
$this->view_switcher( $mode );
}
}