author | ymh <ymh.work@gmail.com> |
Tue, 27 Sep 2022 16:37:53 +0200 | |
changeset 19 | 3d72ae0968f4 |
parent 18 | be944660c56a |
child 21 | 48c4eec2b7e6 |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3 |
* List Table API: WP_Users_List_Table class |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5 |
* @package WordPress |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
6 |
* @subpackage Administration |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
7 |
* @since 3.1.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
8 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
9 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
10 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
11 |
* Core class used to implement displaying users in a list table. |
0 | 12 |
* |
5 | 13 |
* @since 3.1.0 |
14 |
* @access private |
|
15 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
16 |
* @see WP_List_Table |
0 | 17 |
*/ |
18 |
class WP_Users_List_Table extends WP_List_Table { |
|
19 |
||
5 | 20 |
/** |
21 |
* Site ID to generate the Users list table for. |
|
22 |
* |
|
23 |
* @since 3.1.0 |
|
24 |
* @var int |
|
25 |
*/ |
|
26 |
public $site_id; |
|
0 | 27 |
|
5 | 28 |
/** |
29 |
* Whether or not the current Users list table is for Multisite. |
|
30 |
* |
|
31 |
* @since 3.1.0 |
|
32 |
* @var bool |
|
33 |
*/ |
|
34 |
public $is_site_users; |
|
35 |
||
36 |
/** |
|
37 |
* Constructor. |
|
38 |
* |
|
39 |
* @since 3.1.0 |
|
40 |
* |
|
41 |
* @see WP_List_Table::__construct() for more information on default arguments. |
|
42 |
* |
|
43 |
* @param array $args An associative array of arguments. |
|
44 |
*/ |
|
45 |
public function __construct( $args = array() ) { |
|
9 | 46 |
parent::__construct( |
47 |
array( |
|
48 |
'singular' => 'user', |
|
49 |
'plural' => 'users', |
|
50 |
'screen' => isset( $args['screen'] ) ? $args['screen'] : null, |
|
51 |
) |
|
52 |
); |
|
0 | 53 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
54 |
$this->is_site_users = 'site-users-network' === $this->screen->id; |
0 | 55 |
|
9 | 56 |
if ( $this->is_site_users ) { |
18 | 57 |
$this->site_id = isset( $_REQUEST['id'] ) ? (int) $_REQUEST['id'] : 0; |
9 | 58 |
} |
0 | 59 |
} |
60 |
||
5 | 61 |
/** |
62 |
* Check the current user's permissions. |
|
63 |
* |
|
9 | 64 |
* @since 3.1.0 |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
65 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
66 |
* @return bool |
5 | 67 |
*/ |
68 |
public function ajax_user_can() { |
|
9 | 69 |
if ( $this->is_site_users ) { |
0 | 70 |
return current_user_can( 'manage_sites' ); |
9 | 71 |
} else { |
0 | 72 |
return current_user_can( 'list_users' ); |
9 | 73 |
} |
0 | 74 |
} |
75 |
||
5 | 76 |
/** |
77 |
* Prepare the users list for display. |
|
78 |
* |
|
79 |
* @since 3.1.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
80 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
81 |
* @global string $role |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
82 |
* @global string $usersearch |
5 | 83 |
*/ |
84 |
public function prepare_items() { |
|
0 | 85 |
global $role, $usersearch; |
86 |
||
5 | 87 |
$usersearch = isset( $_REQUEST['s'] ) ? wp_unslash( trim( $_REQUEST['s'] ) ) : ''; |
0 | 88 |
|
89 |
$role = isset( $_REQUEST['role'] ) ? $_REQUEST['role'] : ''; |
|
90 |
||
9 | 91 |
$per_page = ( $this->is_site_users ) ? 'site_users_network_per_page' : 'users_per_page'; |
0 | 92 |
$users_per_page = $this->get_items_per_page( $per_page ); |
93 |
||
94 |
$paged = $this->get_pagenum(); |
|
95 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
96 |
if ( 'none' === $role ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
97 |
$args = array( |
9 | 98 |
'number' => $users_per_page, |
99 |
'offset' => ( $paged - 1 ) * $users_per_page, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
100 |
'include' => wp_get_users_with_no_role( $this->site_id ), |
9 | 101 |
'search' => $usersearch, |
102 |
'fields' => 'all_with_meta', |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
103 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
104 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
105 |
$args = array( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
106 |
'number' => $users_per_page, |
9 | 107 |
'offset' => ( $paged - 1 ) * $users_per_page, |
108 |
'role' => $role, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
109 |
'search' => $usersearch, |
9 | 110 |
'fields' => 'all_with_meta', |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
111 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
112 |
} |
0 | 113 |
|
9 | 114 |
if ( '' !== $args['search'] ) { |
0 | 115 |
$args['search'] = '*' . $args['search'] . '*'; |
9 | 116 |
} |
0 | 117 |
|
9 | 118 |
if ( $this->is_site_users ) { |
0 | 119 |
$args['blog_id'] = $this->site_id; |
9 | 120 |
} |
0 | 121 |
|
9 | 122 |
if ( isset( $_REQUEST['orderby'] ) ) { |
0 | 123 |
$args['orderby'] = $_REQUEST['orderby']; |
9 | 124 |
} |
0 | 125 |
|
9 | 126 |
if ( isset( $_REQUEST['order'] ) ) { |
0 | 127 |
$args['order'] = $_REQUEST['order']; |
9 | 128 |
} |
0 | 129 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
130 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
131 |
* Filters the query arguments used to retrieve users for the current users list table. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
132 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
133 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
134 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
135 |
* @param array $args Arguments passed to WP_User_Query to retrieve items for the current |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
136 |
* users list table. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
137 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
138 |
$args = apply_filters( 'users_list_table_query_args', $args ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
139 |
|
16 | 140 |
// Query the user IDs for this page. |
0 | 141 |
$wp_user_search = new WP_User_Query( $args ); |
142 |
||
143 |
$this->items = $wp_user_search->get_results(); |
|
144 |
||
9 | 145 |
$this->set_pagination_args( |
146 |
array( |
|
147 |
'total_items' => $wp_user_search->get_total(), |
|
148 |
'per_page' => $users_per_page, |
|
149 |
) |
|
150 |
); |
|
0 | 151 |
} |
152 |
||
5 | 153 |
/** |
154 |
* Output 'no users' message. |
|
155 |
* |
|
156 |
* @since 3.1.0 |
|
157 |
*/ |
|
158 |
public function no_items() { |
|
159 |
_e( 'No users found.' ); |
|
0 | 160 |
} |
161 |
||
5 | 162 |
/** |
163 |
* Return an associative array listing all the views that can be used |
|
164 |
* with this table. |
|
165 |
* |
|
166 |
* Provides a list of roles and user count for that role for easy |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
167 |
* Filtersing of the user table. |
5 | 168 |
* |
16 | 169 |
* @since 3.1.0 |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
170 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
171 |
* @global string $role |
5 | 172 |
* |
16 | 173 |
* @return string[] An array of HTML links keyed by their view. |
5 | 174 |
*/ |
175 |
protected function get_views() { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
176 |
global $role; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
177 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
178 |
$wp_roles = wp_roles(); |
0 | 179 |
|
19 | 180 |
$count_users = ! wp_is_large_user_count(); |
181 |
||
0 | 182 |
if ( $this->is_site_users ) { |
183 |
$url = 'site-users.php?id=' . $this->site_id; |
|
184 |
} else { |
|
19 | 185 |
$url = 'users.php'; |
0 | 186 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
187 |
|
19 | 188 |
$role_links = array(); |
189 |
$avail_roles = array(); |
|
190 |
$all_text = __( 'All' ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
191 |
$current_link_attributes = empty( $role ) ? ' class="current" aria-current="page"' : ''; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
192 |
|
19 | 193 |
if ( $count_users ) { |
194 |
if ( $this->is_site_users ) { |
|
195 |
switch_to_blog( $this->site_id ); |
|
196 |
$users_of_blog = count_users( 'time', $this->site_id ); |
|
197 |
restore_current_blog(); |
|
198 |
} else { |
|
199 |
$users_of_blog = count_users(); |
|
200 |
} |
|
201 |
||
202 |
$total_users = $users_of_blog['total_users']; |
|
203 |
$avail_roles =& $users_of_blog['avail_roles']; |
|
204 |
unset( $users_of_blog ); |
|
205 |
||
206 |
$all_text = sprintf( |
|
16 | 207 |
/* translators: %s: Number of users. */ |
208 |
_nx( |
|
209 |
'All <span class="count">(%s)</span>', |
|
210 |
'All <span class="count">(%s)</span>', |
|
211 |
$total_users, |
|
212 |
'users' |
|
213 |
), |
|
214 |
number_format_i18n( $total_users ) |
|
19 | 215 |
); |
216 |
} |
|
217 |
||
218 |
$role_links['all'] = sprintf( '<a href="%s"%s>%s</a>', $url, $current_link_attributes, $all_text ); |
|
16 | 219 |
|
0 | 220 |
foreach ( $wp_roles->get_names() as $this_role => $name ) { |
19 | 221 |
if ( $count_users && ! isset( $avail_roles[ $this_role ] ) ) { |
0 | 222 |
continue; |
9 | 223 |
} |
0 | 224 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
225 |
$current_link_attributes = ''; |
0 | 226 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
227 |
if ( $this_role === $role ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
228 |
$current_link_attributes = ' class="current" aria-current="page"'; |
0 | 229 |
} |
230 |
||
231 |
$name = translate_user_role( $name ); |
|
19 | 232 |
if ( $count_users ) { |
233 |
$name = sprintf( |
|
234 |
/* translators: 1: User role name, 2: Number of users. */ |
|
235 |
__( '%1$s <span class="count">(%2$s)</span>' ), |
|
236 |
$name, |
|
237 |
number_format_i18n( $avail_roles[ $this_role ] ) |
|
238 |
); |
|
239 |
} |
|
16 | 240 |
|
9 | 241 |
$role_links[ $this_role ] = "<a href='" . esc_url( add_query_arg( 'role', $this_role, $url ) ) . "'$current_link_attributes>$name</a>"; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
242 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
243 |
|
9 | 244 |
if ( ! empty( $avail_roles['none'] ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
245 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
246 |
$current_link_attributes = ''; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
247 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
248 |
if ( 'none' === $role ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
249 |
$current_link_attributes = ' class="current" aria-current="page"'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
250 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
251 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
252 |
$name = __( 'No role' ); |
16 | 253 |
$name = sprintf( |
254 |
/* translators: 1: User role name, 2: Number of users. */ |
|
255 |
__( '%1$s <span class="count">(%2$s)</span>' ), |
|
256 |
$name, |
|
257 |
number_format_i18n( $avail_roles['none'] ) |
|
258 |
); |
|
259 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
260 |
$role_links['none'] = "<a href='" . esc_url( add_query_arg( 'role', 'none', $url ) ) . "'$current_link_attributes>$name</a>"; |
0 | 261 |
} |
262 |
||
263 |
return $role_links; |
|
264 |
} |
|
265 |
||
5 | 266 |
/** |
267 |
* Retrieve an associative array of bulk actions available on this table. |
|
268 |
* |
|
16 | 269 |
* @since 3.1.0 |
5 | 270 |
* |
18 | 271 |
* @return array Array of bulk action labels keyed by their action. |
5 | 272 |
*/ |
273 |
protected function get_bulk_actions() { |
|
0 | 274 |
$actions = array(); |
275 |
||
276 |
if ( is_multisite() ) { |
|
9 | 277 |
if ( current_user_can( 'remove_users' ) ) { |
0 | 278 |
$actions['remove'] = __( 'Remove' ); |
9 | 279 |
} |
0 | 280 |
} else { |
9 | 281 |
if ( current_user_can( 'delete_users' ) ) { |
0 | 282 |
$actions['delete'] = __( 'Delete' ); |
9 | 283 |
} |
0 | 284 |
} |
285 |
||
18 | 286 |
// Add a password reset link to the bulk actions dropdown. |
287 |
if ( current_user_can( 'edit_users' ) ) { |
|
288 |
$actions['resetpassword'] = __( 'Send password reset' ); |
|
289 |
} |
|
290 |
||
0 | 291 |
return $actions; |
292 |
} |
|
293 |
||
5 | 294 |
/** |
295 |
* Output the controls to allow user roles to be changed in bulk. |
|
296 |
* |
|
297 |
* @since 3.1.0 |
|
298 |
* |
|
299 |
* @param string $which Whether this is being invoked above ("top") |
|
300 |
* or below the table ("bottom"). |
|
301 |
*/ |
|
302 |
protected function extra_tablenav( $which ) { |
|
9 | 303 |
$id = 'bottom' === $which ? 'new_role2' : 'new_role'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
304 |
$button_id = 'bottom' === $which ? 'changeit2' : 'changeit'; |
9 | 305 |
?> |
0 | 306 |
<div class="alignleft actions"> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
307 |
<?php if ( current_user_can( 'promote_users' ) && $this->has_items() ) : ?> |
9 | 308 |
<label class="screen-reader-text" for="<?php echo $id; ?>"><?php _e( 'Change role to…' ); ?></label> |
309 |
<select name="<?php echo $id; ?>" id="<?php echo $id; ?>"> |
|
310 |
<option value=""><?php _e( 'Change role to…' ); ?></option> |
|
0 | 311 |
<?php wp_dropdown_roles(); ?> |
18 | 312 |
<option value="none"><?php _e( '— No role for this site —' ); ?></option> |
0 | 313 |
</select> |
9 | 314 |
<?php |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
315 |
submit_button( __( 'Change' ), '', $button_id, false ); |
0 | 316 |
endif; |
317 |
||
5 | 318 |
/** |
319 |
* Fires just before the closing div containing the bulk role-change controls |
|
320 |
* in the Users list table. |
|
321 |
* |
|
322 |
* @since 3.5.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
323 |
* @since 4.6.0 The `$which` parameter was added. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
324 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
325 |
* @param string $which The location of the extra table nav markup: 'top' or 'bottom'. |
5 | 326 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
327 |
do_action( 'restrict_manage_users', $which ); |
9 | 328 |
?> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
329 |
</div> |
9 | 330 |
<?php |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
331 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
332 |
* Fires immediately following the closing "actions" div in the tablenav for the users |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
333 |
* list table. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
334 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
335 |
* @since 4.9.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
336 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
337 |
* @param string $which The location of the extra table nav markup: 'top' or 'bottom'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
338 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
339 |
do_action( 'manage_users_extra_tablenav', $which ); |
0 | 340 |
} |
341 |
||
5 | 342 |
/** |
343 |
* Capture the bulk action required, and return it. |
|
344 |
* |
|
345 |
* Overridden from the base class implementation to capture |
|
346 |
* the role change drop-down. |
|
347 |
* |
|
16 | 348 |
* @since 3.1.0 |
5 | 349 |
* |
350 |
* @return string The bulk action required. |
|
351 |
*/ |
|
352 |
public function current_action() { |
|
18 | 353 |
if ( isset( $_REQUEST['changeit'] ) && ! empty( $_REQUEST['new_role'] ) ) { |
0 | 354 |
return 'promote'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
355 |
} |
0 | 356 |
|
357 |
return parent::current_action(); |
|
358 |
} |
|
359 |
||
5 | 360 |
/** |
361 |
* Get a list of columns for the list table. |
|
362 |
* |
|
16 | 363 |
* @since 3.1.0 |
5 | 364 |
* |
16 | 365 |
* @return string[] Array of column titles keyed by their column name. |
5 | 366 |
*/ |
367 |
public function get_columns() { |
|
0 | 368 |
$c = array( |
369 |
'cb' => '<input type="checkbox" />', |
|
370 |
'username' => __( 'Username' ), |
|
371 |
'name' => __( 'Name' ), |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
372 |
'email' => __( 'Email' ), |
0 | 373 |
'role' => __( 'Role' ), |
19 | 374 |
'posts' => _x( 'Posts', 'post type general name' ), |
0 | 375 |
); |
376 |
||
9 | 377 |
if ( $this->is_site_users ) { |
0 | 378 |
unset( $c['posts'] ); |
9 | 379 |
} |
0 | 380 |
|
381 |
return $c; |
|
382 |
} |
|
383 |
||
5 | 384 |
/** |
385 |
* Get a list of sortable columns for the list table. |
|
386 |
* |
|
387 |
* @since 3.1.0 |
|
388 |
* |
|
389 |
* @return array Array of sortable columns. |
|
390 |
*/ |
|
391 |
protected function get_sortable_columns() { |
|
0 | 392 |
$c = array( |
393 |
'username' => 'login', |
|
394 |
'email' => 'email', |
|
395 |
); |
|
396 |
||
397 |
return $c; |
|
398 |
} |
|
399 |
||
5 | 400 |
/** |
401 |
* Generate the list table rows. |
|
402 |
* |
|
403 |
* @since 3.1.0 |
|
404 |
*/ |
|
405 |
public function display_rows() { |
|
16 | 406 |
// Query the post counts for this page. |
9 | 407 |
if ( ! $this->is_site_users ) { |
0 | 408 |
$post_counts = count_many_users_posts( array_keys( $this->items ) ); |
9 | 409 |
} |
0 | 410 |
|
411 |
foreach ( $this->items as $userid => $user_object ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
412 |
echo "\n\t" . $this->single_row( $user_object, '', '', isset( $post_counts ) ? $post_counts[ $userid ] : 0 ); |
0 | 413 |
} |
414 |
} |
|
415 |
||
416 |
/** |
|
417 |
* Generate HTML for a single row on the users.php admin panel. |
|
418 |
* |
|
5 | 419 |
* @since 3.1.0 |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
420 |
* @since 4.2.0 The `$style` parameter was deprecated. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
421 |
* @since 4.4.0 The `$role` parameter was deprecated. |
0 | 422 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
423 |
* @param WP_User $user_object The current user object. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
424 |
* @param string $style Deprecated. Not used. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
425 |
* @param string $role Deprecated. Not used. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
426 |
* @param int $numposts Optional. Post count to display for this user. Defaults |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
427 |
* to zero, as in, a new user has made zero posts. |
5 | 428 |
* @return string Output for a single row. |
0 | 429 |
*/ |
5 | 430 |
public function single_row( $user_object, $style = '', $role = '', $numposts = 0 ) { |
431 |
if ( ! ( $user_object instanceof WP_User ) ) { |
|
0 | 432 |
$user_object = get_userdata( (int) $user_object ); |
5 | 433 |
} |
0 | 434 |
$user_object->filter = 'display'; |
9 | 435 |
$email = $user_object->user_email; |
0 | 436 |
|
9 | 437 |
if ( $this->is_site_users ) { |
0 | 438 |
$url = "site-users.php?id={$this->site_id}&"; |
9 | 439 |
} else { |
0 | 440 |
$url = 'users.php?'; |
9 | 441 |
} |
0 | 442 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
443 |
$user_roles = $this->get_role_list( $user_object ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
444 |
|
16 | 445 |
// Set up the hover actions for this user. |
9 | 446 |
$actions = array(); |
447 |
$checkbox = ''; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
448 |
$super_admin = ''; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
449 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
450 |
if ( is_multisite() && current_user_can( 'manage_network_users' ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
451 |
if ( in_array( $user_object->user_login, get_super_admins(), true ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
452 |
$super_admin = ' — ' . __( 'Super Admin' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
453 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
454 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
455 |
|
16 | 456 |
// Check if the user for this row is editable. |
0 | 457 |
if ( current_user_can( 'list_users' ) ) { |
16 | 458 |
// Set up the user editing link. |
19 | 459 |
$edit_link = esc_url( |
460 |
add_query_arg( |
|
461 |
'wp_http_referer', |
|
462 |
urlencode( wp_unslash( $_SERVER['REQUEST_URI'] ) ), |
|
463 |
get_edit_user_link( $user_object->ID ) |
|
464 |
) |
|
465 |
); |
|
0 | 466 |
|
9 | 467 |
if ( current_user_can( 'edit_user', $user_object->ID ) ) { |
468 |
$edit = "<strong><a href=\"{$edit_link}\">{$user_object->user_login}</a>{$super_admin}</strong><br />"; |
|
0 | 469 |
$actions['edit'] = '<a href="' . $edit_link . '">' . __( 'Edit' ) . '</a>'; |
470 |
} else { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
471 |
$edit = "<strong>{$user_object->user_login}{$super_admin}</strong><br />"; |
0 | 472 |
} |
473 |
||
19 | 474 |
if ( ! is_multisite() |
475 |
&& get_current_user_id() !== $user_object->ID |
|
476 |
&& current_user_can( 'delete_user', $user_object->ID ) |
|
477 |
) { |
|
9 | 478 |
$actions['delete'] = "<a class='submitdelete' href='" . wp_nonce_url( "users.php?action=delete&user=$user_object->ID", 'bulk-users' ) . "'>" . __( 'Delete' ) . '</a>'; |
479 |
} |
|
19 | 480 |
|
481 |
if ( is_multisite() |
|
482 |
&& current_user_can( 'remove_user', $user_object->ID ) |
|
483 |
) { |
|
9 | 484 |
$actions['remove'] = "<a class='submitdelete' href='" . wp_nonce_url( $url . "action=remove&user=$user_object->ID", 'bulk-users' ) . "'>" . __( 'Remove' ) . '</a>'; |
485 |
} |
|
5 | 486 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
487 |
// Add a link to the user's author archive, if not empty. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
488 |
$author_posts_url = get_author_posts_url( $user_object->ID ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
489 |
if ( $author_posts_url ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
490 |
$actions['view'] = sprintf( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
491 |
'<a href="%s" aria-label="%s">%s</a>', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
492 |
esc_url( $author_posts_url ), |
16 | 493 |
/* translators: %s: Author's display name. */ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
494 |
esc_attr( sprintf( __( 'View posts by %s' ), $user_object->display_name ) ), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
495 |
__( 'View' ) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
496 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
497 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
498 |
|
18 | 499 |
// Add a link to send the user a reset password link by email. |
19 | 500 |
if ( get_current_user_id() !== $user_object->ID |
501 |
&& current_user_can( 'edit_user', $user_object->ID ) |
|
502 |
) { |
|
18 | 503 |
$actions['resetpassword'] = "<a class='resetpassword' href='" . wp_nonce_url( "users.php?action=resetpassword&users=$user_object->ID", 'bulk-users' ) . "'>" . __( 'Send password reset' ) . '</a>'; |
504 |
} |
|
505 |
||
5 | 506 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
507 |
* Filters the action links displayed under each user in the Users list table. |
5 | 508 |
* |
509 |
* @since 2.8.0 |
|
510 |
* |
|
9 | 511 |
* @param string[] $actions An array of action links to be displayed. |
512 |
* Default 'Edit', 'Delete' for single site, and |
|
513 |
* 'Edit', 'Remove' for Multisite. |
|
514 |
* @param WP_User $user_object WP_User object for the currently listed user. |
|
5 | 515 |
*/ |
0 | 516 |
$actions = apply_filters( 'user_row_actions', $actions, $user_object ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
517 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
518 |
// Role classes. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
519 |
$role_classes = esc_attr( implode( ' ', array_keys( $user_roles ) ) ); |
0 | 520 |
|
16 | 521 |
// Set up the checkbox (because the user is editable, otherwise it's empty). |
522 |
$checkbox = sprintf( |
|
523 |
'<label class="screen-reader-text" for="user_%1$s">%2$s</label>' . |
|
524 |
'<input type="checkbox" name="users[]" id="user_%1$s" class="%3$s" value="%1$s" />', |
|
525 |
$user_object->ID, |
|
526 |
/* translators: %s: User login. */ |
|
527 |
sprintf( __( 'Select %s' ), $user_object->user_login ), |
|
528 |
$role_classes |
|
529 |
); |
|
0 | 530 |
|
531 |
} else { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
532 |
$edit = "<strong>{$user_object->user_login}{$super_admin}</strong>"; |
0 | 533 |
} |
16 | 534 |
|
0 | 535 |
$avatar = get_avatar( $user_object->ID, 32 ); |
536 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
537 |
// Comma-separated list of user roles. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
538 |
$roles_list = implode( ', ', $user_roles ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
539 |
|
5 | 540 |
$r = "<tr id='user-$user_object->ID'>"; |
0 | 541 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
542 |
list( $columns, $hidden, $sortable, $primary ) = $this->get_column_info(); |
0 | 543 |
|
544 |
foreach ( $columns as $column_name => $column_display_name ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
545 |
$classes = "$column_name column-$column_name"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
546 |
if ( $primary === $column_name ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
547 |
$classes .= ' has-row-actions column-primary'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
548 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
549 |
if ( 'posts' === $column_name ) { |
16 | 550 |
$classes .= ' num'; // Special case for that column. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
551 |
} |
0 | 552 |
|
16 | 553 |
if ( in_array( $column_name, $hidden, true ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
554 |
$classes .= ' hidden'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
555 |
} |
0 | 556 |
|
18 | 557 |
$data = 'data-colname="' . esc_attr( wp_strip_all_tags( $column_display_name ) ) . '"'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
558 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
559 |
$attributes = "class='$classes' $data"; |
0 | 560 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
561 |
if ( 'cb' === $column_name ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
562 |
$r .= "<th scope='row' class='check-column'>$checkbox</th>"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
563 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
564 |
$r .= "<td $attributes>"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
565 |
switch ( $column_name ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
566 |
case 'username': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
567 |
$r .= "$avatar $edit"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
568 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
569 |
case 'name': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
570 |
if ( $user_object->first_name && $user_object->last_name ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
571 |
$r .= "$user_object->first_name $user_object->last_name"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
572 |
} elseif ( $user_object->first_name ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
573 |
$r .= $user_object->first_name; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
574 |
} elseif ( $user_object->last_name ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
575 |
$r .= $user_object->last_name; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
576 |
} else { |
16 | 577 |
$r .= sprintf( |
578 |
'<span aria-hidden="true">—</span><span class="screen-reader-text">%s</span>', |
|
579 |
_x( 'Unknown', 'name' ) |
|
580 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
581 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
582 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
583 |
case 'email': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
584 |
$r .= "<a href='" . esc_url( "mailto:$email" ) . "'>$email</a>"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
585 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
586 |
case 'role': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
587 |
$r .= esc_html( $roles_list ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
588 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
589 |
case 'posts': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
590 |
if ( $numposts > 0 ) { |
16 | 591 |
$r .= sprintf( |
592 |
'<a href="%s" class="edit"><span aria-hidden="true">%s</span><span class="screen-reader-text">%s</span></a>', |
|
593 |
"edit.php?author={$user_object->ID}", |
|
594 |
$numposts, |
|
595 |
sprintf( |
|
596 |
/* translators: %s: Number of posts. */ |
|
597 |
_n( '%s post by this author', '%s posts by this author', $numposts ), |
|
598 |
number_format_i18n( $numposts ) |
|
599 |
) |
|
600 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
601 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
602 |
$r .= 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
603 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
604 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
605 |
default: |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
606 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
607 |
* Filters the display output of custom columns in the Users list table. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
608 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
609 |
* @since 2.8.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
610 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
611 |
* @param string $output Custom column output. Default empty. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
612 |
* @param string $column_name Column name. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
613 |
* @param int $user_id ID of the currently-listed user. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
614 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
615 |
$r .= apply_filters( 'manage_users_custom_column', '', $column_name, $user_object->ID ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
616 |
} |
5 | 617 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
618 |
if ( $primary === $column_name ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
619 |
$r .= $this->row_actions( $actions ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
620 |
} |
9 | 621 |
$r .= '</td>'; |
0 | 622 |
} |
623 |
} |
|
624 |
$r .= '</tr>'; |
|
625 |
||
626 |
return $r; |
|
627 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
628 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
629 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
630 |
* Gets the name of the default primary column. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
631 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
632 |
* @since 4.3.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
633 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
634 |
* @return string Name of the default primary column, in this case, 'username'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
635 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
636 |
protected function get_default_primary_column_name() { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
637 |
return 'username'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
638 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
639 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
640 |
/** |
19 | 641 |
* Returns an array of translated user role names for a given user object. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
642 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
643 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
644 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
645 |
* @param WP_User $user_object The WP_User object. |
19 | 646 |
* @return string[] An array of user role names keyed by role. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
647 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
648 |
protected function get_role_list( $user_object ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
649 |
$wp_roles = wp_roles(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
650 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
651 |
$role_list = array(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
652 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
653 |
foreach ( $user_object->roles as $role ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
654 |
if ( isset( $wp_roles->role_names[ $role ] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
655 |
$role_list[ $role ] = translate_user_role( $wp_roles->role_names[ $role ] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
656 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
657 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
658 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
659 |
if ( empty( $role_list ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
660 |
$role_list['none'] = _x( 'None', 'no user roles' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
661 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
662 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
663 |
/** |
19 | 664 |
* Filters the returned array of translated role names for a user. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
665 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
666 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
667 |
* |
19 | 668 |
* @param string[] $role_list An array of translated user role names keyed by role. |
9 | 669 |
* @param WP_User $user_object A WP_User object. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
670 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
671 |
return apply_filters( 'get_role_list', $role_list, $user_object ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
672 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
673 |
|
0 | 674 |
} |