]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/includes/class-wp-ms-users-list-table.php
WordPress 4.1.2-scripts
[autoinstalls/wordpress.git] / wp-admin / includes / class-wp-ms-users-list-table.php
index df0640686bf2192cb795f3ca76dce00e1531f2be..3a8dd25259af6e833b75ded106130c5ef66c6ee2 100644 (file)
@@ -9,11 +9,11 @@
  */
 class WP_MS_Users_List_Table extends WP_List_Table {
 
-       function ajax_user_can() {
+       public function ajax_user_can() {
                return current_user_can( 'manage_network_users' );
        }
 
-       function prepare_items() {
+       public function prepare_items() {
                global $usersearch, $role, $wpdb, $mode;
 
                $usersearch = isset( $_REQUEST['s'] ) ? wp_unslash( trim( $_REQUEST['s'] ) ) : '';
@@ -40,8 +40,11 @@ class WP_MS_Users_List_Table extends WP_List_Table {
                        $args['include'] = $wpdb->get_col( "SELECT ID FROM $wpdb->users WHERE user_login IN ('$logins')" );
                }
 
-               // If the network is large and a search is not being performed, show only the latest users with no paging in order
-               // to avoid expensive count queries.
+               /*
+                * If the network is large and a search is not being performed,
+                * show only the latest users with no paging in order to avoid
+                * expensive count queries.
+                */
                if ( !$usersearch && wp_is_large_network( 'users' ) ) {
                        if ( !isset($_REQUEST['orderby']) )
                                $_GET['orderby'] = $_REQUEST['orderby'] = 'id';
@@ -69,7 +72,7 @@ class WP_MS_Users_List_Table extends WP_List_Table {
                ) );
        }
 
-       function get_bulk_actions() {
+       protected function get_bulk_actions() {
                $actions = array();
                if ( current_user_can( 'delete_users' ) )
                        $actions['delete'] = __( 'Delete' );
@@ -79,18 +82,17 @@ class WP_MS_Users_List_Table extends WP_List_Table {
                return $actions;
        }
 
-       function no_items() {
+       public function no_items() {
                _e( 'No users found.' );
        }
 
-       function get_views() {
-               global $wp_roles, $role;
+       protected function get_views() {
+               global $role;
 
                $total_users = get_user_count();
                $super_admins = get_super_admins();
                $total_admins = count( $super_admins );
 
-               $current_role = false;
                $class = $role != 'super' ? ' class="current"' : '';
                $role_links = array();
                $role_links['all'] = "<a href='" . network_admin_url('users.php') . "'$class>" . sprintf( _nx( 'All <span class="count">(%s)</span>', 'All <span class="count">(%s)</span>', $total_users, 'users' ), number_format_i18n( $total_users ) ) . '</a>';
@@ -100,7 +102,11 @@ class WP_MS_Users_List_Table extends WP_List_Table {
                return $role_links;
        }
 
-       function pagination( $which ) {
+       /**
+        * @global string $mode
+        * @param string $which
+        */
+       protected function pagination( $which ) {
                global $mode;
 
                parent::pagination ( $which );
@@ -109,7 +115,7 @@ class WP_MS_Users_List_Table extends WP_List_Table {
                        $this->view_switcher( $mode );
        }
 
-       function get_columns() {
+       public function get_columns() {
                $users_columns = array(
                        'cb'         => '<input type="checkbox" />',
                        'username'   => __( 'Username' ),
@@ -131,7 +137,7 @@ class WP_MS_Users_List_Table extends WP_List_Table {
                return $users_columns;
        }
 
-       function get_sortable_columns() {
+       protected function get_sortable_columns() {
                return array(
                        'username'   => 'login',
                        'name'       => 'name',
@@ -140,7 +146,7 @@ class WP_MS_Users_List_Table extends WP_List_Table {
                );
        }
 
-       function display_rows() {
+       public function display_rows() {
                global $mode;
 
                $alt = '';