]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/includes/class-wp-ms-users-list-table.php
WordPress 4.1
[autoinstalls/wordpress.git] / wp-admin / includes / class-wp-ms-users-list-table.php
1 <?php
2 /**
3  * Multisite Users List Table class.
4  *
5  * @package WordPress
6  * @subpackage List_Table
7  * @since 3.1.0
8  * @access private
9  */
10 class WP_MS_Users_List_Table extends WP_List_Table {
11
12         public function ajax_user_can() {
13                 return current_user_can( 'manage_network_users' );
14         }
15
16         public function prepare_items() {
17                 global $usersearch, $role, $wpdb, $mode;
18
19                 $usersearch = isset( $_REQUEST['s'] ) ? wp_unslash( trim( $_REQUEST['s'] ) ) : '';
20
21                 $users_per_page = $this->get_items_per_page( 'users_network_per_page' );
22
23                 $role = isset( $_REQUEST['role'] ) ? $_REQUEST['role'] : '';
24
25                 $paged = $this->get_pagenum();
26
27                 $args = array(
28                         'number' => $users_per_page,
29                         'offset' => ( $paged-1 ) * $users_per_page,
30                         'search' => $usersearch,
31                         'blog_id' => 0,
32                         'fields' => 'all_with_meta'
33                 );
34
35                 if ( wp_is_large_network( 'users' ) )
36                         $args['search'] = ltrim( $args['search'], '*' );
37
38                 if ( $role == 'super' ) {
39                         $logins = implode( "', '", get_super_admins() );
40                         $args['include'] = $wpdb->get_col( "SELECT ID FROM $wpdb->users WHERE user_login IN ('$logins')" );
41                 }
42
43                 /*
44                  * If the network is large and a search is not being performed,
45                  * show only the latest users with no paging in order to avoid
46                  * expensive count queries.
47                  */
48                 if ( !$usersearch && wp_is_large_network( 'users' ) ) {
49                         if ( !isset($_REQUEST['orderby']) )
50                                 $_GET['orderby'] = $_REQUEST['orderby'] = 'id';
51                         if ( !isset($_REQUEST['order']) )
52                                 $_GET['order'] = $_REQUEST['order'] = 'DESC';
53                         $args['count_total'] = false;
54                 }
55
56                 if ( isset( $_REQUEST['orderby'] ) )
57                         $args['orderby'] = $_REQUEST['orderby'];
58
59                 if ( isset( $_REQUEST['order'] ) )
60                         $args['order'] = $_REQUEST['order'];
61
62                 $mode = empty( $_REQUEST['mode'] ) ? 'list' : $_REQUEST['mode'];
63
64                 // Query the user IDs for this page
65                 $wp_user_search = new WP_User_Query( $args );
66
67                 $this->items = $wp_user_search->get_results();
68
69                 $this->set_pagination_args( array(
70                         'total_items' => $wp_user_search->get_total(),
71                         'per_page' => $users_per_page,
72                 ) );
73         }
74
75         protected function get_bulk_actions() {
76                 $actions = array();
77                 if ( current_user_can( 'delete_users' ) )
78                         $actions['delete'] = __( 'Delete' );
79                 $actions['spam'] = _x( 'Mark as Spam', 'user' );
80                 $actions['notspam'] = _x( 'Not Spam', 'user' );
81
82                 return $actions;
83         }
84
85         public function no_items() {
86                 _e( 'No users found.' );
87         }
88
89         protected function get_views() {
90                 global $role;
91
92                 $total_users = get_user_count();
93                 $super_admins = get_super_admins();
94                 $total_admins = count( $super_admins );
95
96                 $class = $role != 'super' ? ' class="current"' : '';
97                 $role_links = array();
98                 $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>';
99                 $class = $role == 'super' ? ' class="current"' : '';
100                 $role_links['super'] = "<a href='" . network_admin_url('users.php?role=super') . "'$class>" . sprintf( _n( 'Super Admin <span class="count">(%s)</span>', 'Super Admins <span class="count">(%s)</span>', $total_admins ), number_format_i18n( $total_admins ) ) . '</a>';
101
102                 return $role_links;
103         }
104
105         /**
106          * @global string $mode
107          * @param string $which
108          */
109         protected function pagination( $which ) {
110                 global $mode;
111
112                 parent::pagination ( $which );
113
114                 if ( 'top' == $which )
115                         $this->view_switcher( $mode );
116         }
117
118         public function get_columns() {
119                 $users_columns = array(
120                         'cb'         => '<input type="checkbox" />',
121                         'username'   => __( 'Username' ),
122                         'name'       => __( 'Name' ),
123                         'email'      => __( 'E-mail' ),
124                         'registered' => _x( 'Registered', 'user' ),
125                         'blogs'      => __( 'Sites' )
126                 );
127                 /**
128                  * Filter the columns displayed in the Network Admin Users list table.
129                  *
130                  * @since MU
131                  *
132                  * @param array $users_columns An array of user columns. Default 'cb', 'username',
133                  *                             'name', 'email', 'registered', 'blogs'.
134                  */
135                 $users_columns = apply_filters( 'wpmu_users_columns', $users_columns );
136
137                 return $users_columns;
138         }
139
140         protected function get_sortable_columns() {
141                 return array(
142                         'username'   => 'login',
143                         'name'       => 'name',
144                         'email'      => 'email',
145                         'registered' => 'id',
146                 );
147         }
148
149         public function display_rows() {
150                 global $mode;
151
152                 $alt = '';
153                 $super_admins = get_super_admins();
154                 foreach ( $this->items as $user ) {
155                         $alt = ( 'alternate' == $alt ) ? '' : 'alternate';
156
157                         $status_list = array( 'spam' => 'site-spammed', 'deleted' => 'site-deleted' );
158
159                         foreach ( $status_list as $status => $col ) {
160                                 if ( $user->$status )
161                                         $alt .= " $col";
162                         }
163
164                         ?>
165                         <tr class="<?php echo $alt; ?>">
166                         <?php
167
168                         list( $columns, $hidden ) = $this->get_column_info();
169
170                         foreach ( $columns as $column_name => $column_display_name ) :
171                                 $class = "class='$column_name column-$column_name'";
172
173                                 $style = '';
174                                 if ( in_array( $column_name, $hidden ) )
175                                         $style = ' style="display:none;"';
176
177                                 $attributes = "$class$style";
178
179                                 switch ( $column_name ) {
180                                         case 'cb': ?>
181                                                 <th scope="row" class="check-column">
182                                                         <label class="screen-reader-text" for="blog_<?php echo $user->ID; ?>"><?php echo sprintf( __( 'Select %s' ), $user->user_login ); ?></label>
183                                                         <input type="checkbox" id="blog_<?php echo $user->ID ?>" name="allusers[]" value="<?php echo esc_attr( $user->ID ) ?>" />
184                                                 </th>
185                                         <?php
186                                         break;
187
188                                         case 'username':
189                                                 $avatar = get_avatar( $user->user_email, 32 );
190                                                 $edit_link = esc_url( add_query_arg( 'wp_http_referer', urlencode( wp_unslash( $_SERVER['REQUEST_URI'] ) ), get_edit_user_link( $user->ID ) ) );
191
192                                                 echo "<td $attributes>"; ?>
193                                                         <?php echo $avatar; ?><strong><a href="<?php echo $edit_link; ?>" class="edit"><?php echo $user->user_login; ?></a><?php
194                                                         if ( in_array( $user->user_login, $super_admins ) )
195                                                                 echo ' - ' . __( 'Super Admin' );
196                                                         ?></strong>
197                                                         <br/>
198                                                         <?php
199                                                                 $actions = array();
200                                                                 $actions['edit'] = '<a href="' . $edit_link . '">' . __( 'Edit' ) . '</a>';
201
202                                                                 if ( current_user_can( 'delete_user', $user->ID ) && ! in_array( $user->user_login, $super_admins ) ) {
203                                                                         $actions['delete'] = '<a href="' . $delete = esc_url( network_admin_url( add_query_arg( '_wp_http_referer', urlencode( wp_unslash( $_SERVER['REQUEST_URI'] ) ), wp_nonce_url( 'users.php', 'deleteuser' ) . '&amp;action=deleteuser&amp;id=' . $user->ID ) ) ) . '" class="delete">' . __( 'Delete' ) . '</a>';
204                                                                 }
205
206                                                                 /**
207                                                                  * Filter the action links displayed under each user
208                                                                  * in the Network Admin Users list table.
209                                                                  *
210                                                                  * @since 3.2.0
211                                                                  *
212                                                                  * @param array   $actions An array of action links to be displayed.
213                                                                  *                         Default 'Edit', 'Delete'.
214                                                                  * @param WP_User $user    WP_User object.
215                                                                  */
216                                                                 $actions = apply_filters( 'ms_user_row_actions', $actions, $user );
217                                                                 echo $this->row_actions( $actions );
218                                                         ?>
219                                                 </td>
220                                         <?php
221                                         break;
222
223                                         case 'name':
224                                                 echo "<td $attributes>$user->first_name $user->last_name</td>";
225                                         break;
226
227                                         case 'email':
228                                                 echo "<td $attributes><a href='mailto:$user->user_email'>$user->user_email</a></td>";
229                                         break;
230
231                                         case 'registered':
232                                                 if ( 'list' == $mode )
233                                                         $date = 'Y/m/d';
234                                                 else
235                                                         $date = 'Y/m/d \<\b\r \/\> g:i:s a';
236
237                                                 echo "<td $attributes>" . mysql2date( $date, $user->user_registered ) . "</td>";
238                                         break;
239
240                                         case 'blogs':
241                                                 $blogs = get_blogs_of_user( $user->ID, true );
242                                                 echo "<td $attributes>";
243                                                         if ( is_array( $blogs ) ) {
244                                                                 foreach ( (array) $blogs as $key => $val ) {
245                                                                         if ( !can_edit_network( $val->site_id ) )
246                                                                                 continue;
247
248                                                                         $path   = ( $val->path == '/' ) ? '' : $val->path;
249                                                                         echo '<span class="site-' . $val->site_id . '" >';
250                                                                         echo '<a href="'. esc_url( network_admin_url( 'site-info.php?id=' . $val->userblog_id ) ) .'">' . str_replace( '.' . get_current_site()->domain, '', $val->domain . $path ) . '</a>';
251                                                                         echo ' <small class="row-actions">';
252                                                                         $actions = array();
253                                                                         $actions['edit'] = '<a href="'. esc_url( network_admin_url( 'site-info.php?id=' . $val->userblog_id ) ) .'">' . __( 'Edit' ) . '</a>';
254
255                                                                         $class = '';
256                                                                         if ( get_blog_status( $val->userblog_id, 'spam' ) == 1 )
257                                                                                 $class .= 'site-spammed ';
258                                                                         if ( get_blog_status( $val->userblog_id, 'mature' ) == 1 )
259                                                                                 $class .= 'site-mature ';
260                                                                         if ( get_blog_status( $val->userblog_id, 'deleted' ) == 1 )
261                                                                                 $class .= 'site-deleted ';
262                                                                         if ( get_blog_status( $val->userblog_id, 'archived' ) == 1 )
263                                                                                 $class .= 'site-archived ';
264
265                                                                         $actions['view'] = '<a class="' . $class . '" href="' . esc_url( get_home_url( $val->userblog_id ) ) . '">' . __( 'View' ) . '</a>';
266
267                                                                         /**
268                                                                          * Filter the action links displayed next the sites a user belongs to
269                                                                          * in the Network Admin Users list table.
270                                                                          *
271                                                                          * @since 3.1.0
272                                                                          *
273                                                                          * @param array $actions     An array of action links to be displayed.
274                                                                          *                           Default 'Edit', 'View'.
275                                                                          * @param int   $userblog_id The site ID.
276                                                                          */
277                                                                         $actions = apply_filters( 'ms_user_list_site_actions', $actions, $val->userblog_id );
278
279                                                                         $i=0;
280                                                                         $action_count = count( $actions );
281                                                                         foreach ( $actions as $action => $link ) {
282                                                                                 ++$i;
283                                                                                 ( $i == $action_count ) ? $sep = '' : $sep = ' | ';
284                                                                                 echo "<span class='$action'>$link$sep</span>";
285                                                                         }
286                                                                         echo '</small></span><br/>';
287                                                                 }
288                                                         }
289                                                         ?>
290                                                 </td>
291                                         <?php
292                                         break;
293
294                                         default:
295                                                 echo "<td $attributes>";
296                                                 /** This filter is documented in wp-admin/includes/class-wp-users-list-table.php */
297                                                 echo apply_filters( 'manage_users_custom_column', '', $column_name, $user->ID );
298                                                 echo "</td>";
299                                         break;
300                                 }
301                         endforeach
302                         ?>
303                         </tr>
304                         <?php
305                 }
306         }
307 }