author | ymh <ymh.work@gmail.com> |
Tue, 15 Dec 2020 13:49:49 +0100 | |
changeset 16 | a86126ab1dd4 |
parent 9 | 177826044cd9 |
child 18 | be944660c56a |
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 ) { |
0 | 57 |
$this->site_id = isset( $_REQUEST['id'] ) ? intval( $_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 |
|
180 |
if ( $this->is_site_users ) { |
|
181 |
$url = 'site-users.php?id=' . $this->site_id; |
|
182 |
switch_to_blog( $this->site_id ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
183 |
$users_of_blog = count_users( 'time', $this->site_id ); |
0 | 184 |
restore_current_blog(); |
185 |
} else { |
|
9 | 186 |
$url = 'users.php'; |
0 | 187 |
$users_of_blog = count_users(); |
188 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
189 |
|
0 | 190 |
$total_users = $users_of_blog['total_users']; |
191 |
$avail_roles =& $users_of_blog['avail_roles']; |
|
9 | 192 |
unset( $users_of_blog ); |
0 | 193 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
194 |
$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
|
195 |
|
9 | 196 |
$role_links = array(); |
16 | 197 |
$role_links['all'] = sprintf( |
198 |
'<a href="%s"%s>%s</a>', |
|
199 |
$url, |
|
200 |
$current_link_attributes, |
|
201 |
sprintf( |
|
202 |
/* translators: %s: Number of users. */ |
|
203 |
_nx( |
|
204 |
'All <span class="count">(%s)</span>', |
|
205 |
'All <span class="count">(%s)</span>', |
|
206 |
$total_users, |
|
207 |
'users' |
|
208 |
), |
|
209 |
number_format_i18n( $total_users ) |
|
210 |
) |
|
211 |
); |
|
212 |
||
0 | 213 |
foreach ( $wp_roles->get_names() as $this_role => $name ) { |
9 | 214 |
if ( ! isset( $avail_roles[ $this_role ] ) ) { |
0 | 215 |
continue; |
9 | 216 |
} |
0 | 217 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
218 |
$current_link_attributes = ''; |
0 | 219 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
220 |
if ( $this_role === $role ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
221 |
$current_link_attributes = ' class="current" aria-current="page"'; |
0 | 222 |
} |
223 |
||
224 |
$name = translate_user_role( $name ); |
|
16 | 225 |
$name = sprintf( |
226 |
/* translators: 1: User role name, 2: Number of users. */ |
|
227 |
__( '%1$s <span class="count">(%2$s)</span>' ), |
|
228 |
$name, |
|
229 |
number_format_i18n( $avail_roles[ $this_role ] ) |
|
230 |
); |
|
231 |
||
9 | 232 |
$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
|
233 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
234 |
|
9 | 235 |
if ( ! empty( $avail_roles['none'] ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
236 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
237 |
$current_link_attributes = ''; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
238 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
239 |
if ( 'none' === $role ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
240 |
$current_link_attributes = ' class="current" aria-current="page"'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
241 |
} |
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 |
$name = __( 'No role' ); |
16 | 244 |
$name = sprintf( |
245 |
/* translators: 1: User role name, 2: Number of users. */ |
|
246 |
__( '%1$s <span class="count">(%2$s)</span>' ), |
|
247 |
$name, |
|
248 |
number_format_i18n( $avail_roles['none'] ) |
|
249 |
); |
|
250 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
251 |
$role_links['none'] = "<a href='" . esc_url( add_query_arg( 'role', 'none', $url ) ) . "'$current_link_attributes>$name</a>"; |
0 | 252 |
} |
253 |
||
254 |
return $role_links; |
|
255 |
} |
|
256 |
||
5 | 257 |
/** |
258 |
* Retrieve an associative array of bulk actions available on this table. |
|
259 |
* |
|
16 | 260 |
* @since 3.1.0 |
5 | 261 |
* |
16 | 262 |
* @return string[] Array of bulk action labels keyed by their action. |
5 | 263 |
*/ |
264 |
protected function get_bulk_actions() { |
|
0 | 265 |
$actions = array(); |
266 |
||
267 |
if ( is_multisite() ) { |
|
9 | 268 |
if ( current_user_can( 'remove_users' ) ) { |
0 | 269 |
$actions['remove'] = __( 'Remove' ); |
9 | 270 |
} |
0 | 271 |
} else { |
9 | 272 |
if ( current_user_can( 'delete_users' ) ) { |
0 | 273 |
$actions['delete'] = __( 'Delete' ); |
9 | 274 |
} |
0 | 275 |
} |
276 |
||
277 |
return $actions; |
|
278 |
} |
|
279 |
||
5 | 280 |
/** |
281 |
* Output the controls to allow user roles to be changed in bulk. |
|
282 |
* |
|
283 |
* @since 3.1.0 |
|
284 |
* |
|
285 |
* @param string $which Whether this is being invoked above ("top") |
|
286 |
* or below the table ("bottom"). |
|
287 |
*/ |
|
288 |
protected function extra_tablenav( $which ) { |
|
9 | 289 |
$id = 'bottom' === $which ? 'new_role2' : 'new_role'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
290 |
$button_id = 'bottom' === $which ? 'changeit2' : 'changeit'; |
9 | 291 |
?> |
0 | 292 |
<div class="alignleft actions"> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
293 |
<?php if ( current_user_can( 'promote_users' ) && $this->has_items() ) : ?> |
9 | 294 |
<label class="screen-reader-text" for="<?php echo $id; ?>"><?php _e( 'Change role to…' ); ?></label> |
295 |
<select name="<?php echo $id; ?>" id="<?php echo $id; ?>"> |
|
296 |
<option value=""><?php _e( 'Change role to…' ); ?></option> |
|
0 | 297 |
<?php wp_dropdown_roles(); ?> |
298 |
</select> |
|
9 | 299 |
<?php |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
300 |
submit_button( __( 'Change' ), '', $button_id, false ); |
0 | 301 |
endif; |
302 |
||
5 | 303 |
/** |
304 |
* Fires just before the closing div containing the bulk role-change controls |
|
305 |
* in the Users list table. |
|
306 |
* |
|
307 |
* @since 3.5.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
308 |
* @since 4.6.0 The `$which` parameter was added. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
309 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
310 |
* @param string $which The location of the extra table nav markup: 'top' or 'bottom'. |
5 | 311 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
312 |
do_action( 'restrict_manage_users', $which ); |
9 | 313 |
?> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
314 |
</div> |
9 | 315 |
<?php |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
316 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
317 |
* 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
|
318 |
* list table. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
319 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
320 |
* @since 4.9.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
321 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
322 |
* @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
|
323 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
324 |
do_action( 'manage_users_extra_tablenav', $which ); |
0 | 325 |
} |
326 |
||
5 | 327 |
/** |
328 |
* Capture the bulk action required, and return it. |
|
329 |
* |
|
330 |
* Overridden from the base class implementation to capture |
|
331 |
* the role change drop-down. |
|
332 |
* |
|
16 | 333 |
* @since 3.1.0 |
5 | 334 |
* |
335 |
* @return string The bulk action required. |
|
336 |
*/ |
|
337 |
public function current_action() { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
338 |
if ( ( isset( $_REQUEST['changeit'] ) || isset( $_REQUEST['changeit2'] ) ) && |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
339 |
( ! empty( $_REQUEST['new_role'] ) || ! empty( $_REQUEST['new_role2'] ) ) ) { |
0 | 340 |
return 'promote'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
341 |
} |
0 | 342 |
|
343 |
return parent::current_action(); |
|
344 |
} |
|
345 |
||
5 | 346 |
/** |
347 |
* Get a list of columns for the list table. |
|
348 |
* |
|
16 | 349 |
* @since 3.1.0 |
5 | 350 |
* |
16 | 351 |
* @return string[] Array of column titles keyed by their column name. |
5 | 352 |
*/ |
353 |
public function get_columns() { |
|
0 | 354 |
$c = array( |
355 |
'cb' => '<input type="checkbox" />', |
|
356 |
'username' => __( 'Username' ), |
|
357 |
'name' => __( 'Name' ), |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
358 |
'email' => __( 'Email' ), |
0 | 359 |
'role' => __( 'Role' ), |
9 | 360 |
'posts' => __( 'Posts' ), |
0 | 361 |
); |
362 |
||
9 | 363 |
if ( $this->is_site_users ) { |
0 | 364 |
unset( $c['posts'] ); |
9 | 365 |
} |
0 | 366 |
|
367 |
return $c; |
|
368 |
} |
|
369 |
||
5 | 370 |
/** |
371 |
* Get a list of sortable columns for the list table. |
|
372 |
* |
|
373 |
* @since 3.1.0 |
|
374 |
* |
|
375 |
* @return array Array of sortable columns. |
|
376 |
*/ |
|
377 |
protected function get_sortable_columns() { |
|
0 | 378 |
$c = array( |
379 |
'username' => 'login', |
|
380 |
'email' => 'email', |
|
381 |
); |
|
382 |
||
383 |
return $c; |
|
384 |
} |
|
385 |
||
5 | 386 |
/** |
387 |
* Generate the list table rows. |
|
388 |
* |
|
389 |
* @since 3.1.0 |
|
390 |
*/ |
|
391 |
public function display_rows() { |
|
16 | 392 |
// Query the post counts for this page. |
9 | 393 |
if ( ! $this->is_site_users ) { |
0 | 394 |
$post_counts = count_many_users_posts( array_keys( $this->items ) ); |
9 | 395 |
} |
0 | 396 |
|
397 |
foreach ( $this->items as $userid => $user_object ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
398 |
echo "\n\t" . $this->single_row( $user_object, '', '', isset( $post_counts ) ? $post_counts[ $userid ] : 0 ); |
0 | 399 |
} |
400 |
} |
|
401 |
||
402 |
/** |
|
403 |
* Generate HTML for a single row on the users.php admin panel. |
|
404 |
* |
|
5 | 405 |
* @since 3.1.0 |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
406 |
* @since 4.2.0 The `$style` parameter was deprecated. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
407 |
* @since 4.4.0 The `$role` parameter was deprecated. |
0 | 408 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
409 |
* @param WP_User $user_object The current user object. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
410 |
* @param string $style Deprecated. Not used. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
411 |
* @param string $role Deprecated. Not used. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
412 |
* @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
|
413 |
* to zero, as in, a new user has made zero posts. |
5 | 414 |
* @return string Output for a single row. |
0 | 415 |
*/ |
5 | 416 |
public function single_row( $user_object, $style = '', $role = '', $numposts = 0 ) { |
417 |
if ( ! ( $user_object instanceof WP_User ) ) { |
|
0 | 418 |
$user_object = get_userdata( (int) $user_object ); |
5 | 419 |
} |
0 | 420 |
$user_object->filter = 'display'; |
9 | 421 |
$email = $user_object->user_email; |
0 | 422 |
|
9 | 423 |
if ( $this->is_site_users ) { |
0 | 424 |
$url = "site-users.php?id={$this->site_id}&"; |
9 | 425 |
} else { |
0 | 426 |
$url = 'users.php?'; |
9 | 427 |
} |
0 | 428 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
429 |
$user_roles = $this->get_role_list( $user_object ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
430 |
|
16 | 431 |
// Set up the hover actions for this user. |
9 | 432 |
$actions = array(); |
433 |
$checkbox = ''; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
434 |
$super_admin = ''; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
435 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
436 |
if ( is_multisite() && current_user_can( 'manage_network_users' ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
437 |
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
|
438 |
$super_admin = ' — ' . __( 'Super Admin' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
439 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
440 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
441 |
|
16 | 442 |
// Check if the user for this row is editable. |
0 | 443 |
if ( current_user_can( 'list_users' ) ) { |
16 | 444 |
// Set up the user editing link. |
0 | 445 |
$edit_link = esc_url( add_query_arg( 'wp_http_referer', urlencode( wp_unslash( $_SERVER['REQUEST_URI'] ) ), get_edit_user_link( $user_object->ID ) ) ); |
446 |
||
9 | 447 |
if ( current_user_can( 'edit_user', $user_object->ID ) ) { |
448 |
$edit = "<strong><a href=\"{$edit_link}\">{$user_object->user_login}</a>{$super_admin}</strong><br />"; |
|
0 | 449 |
$actions['edit'] = '<a href="' . $edit_link . '">' . __( 'Edit' ) . '</a>'; |
450 |
} else { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
451 |
$edit = "<strong>{$user_object->user_login}{$super_admin}</strong><br />"; |
0 | 452 |
} |
453 |
||
9 | 454 |
if ( ! is_multisite() && get_current_user_id() != $user_object->ID && current_user_can( 'delete_user', $user_object->ID ) ) { |
455 |
$actions['delete'] = "<a class='submitdelete' href='" . wp_nonce_url( "users.php?action=delete&user=$user_object->ID", 'bulk-users' ) . "'>" . __( 'Delete' ) . '</a>'; |
|
456 |
} |
|
16 | 457 |
if ( is_multisite() && current_user_can( 'remove_user', $user_object->ID ) ) { |
9 | 458 |
$actions['remove'] = "<a class='submitdelete' href='" . wp_nonce_url( $url . "action=remove&user=$user_object->ID", 'bulk-users' ) . "'>" . __( 'Remove' ) . '</a>'; |
459 |
} |
|
5 | 460 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
461 |
// 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
|
462 |
$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
|
463 |
if ( $author_posts_url ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
464 |
$actions['view'] = sprintf( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
465 |
'<a href="%s" aria-label="%s">%s</a>', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
466 |
esc_url( $author_posts_url ), |
16 | 467 |
/* translators: %s: Author's display name. */ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
468 |
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
|
469 |
__( 'View' ) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
470 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
471 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
472 |
|
5 | 473 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
474 |
* Filters the action links displayed under each user in the Users list table. |
5 | 475 |
* |
476 |
* @since 2.8.0 |
|
477 |
* |
|
9 | 478 |
* @param string[] $actions An array of action links to be displayed. |
479 |
* Default 'Edit', 'Delete' for single site, and |
|
480 |
* 'Edit', 'Remove' for Multisite. |
|
481 |
* @param WP_User $user_object WP_User object for the currently listed user. |
|
5 | 482 |
*/ |
0 | 483 |
$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
|
484 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
485 |
// Role classes. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
486 |
$role_classes = esc_attr( implode( ' ', array_keys( $user_roles ) ) ); |
0 | 487 |
|
16 | 488 |
// Set up the checkbox (because the user is editable, otherwise it's empty). |
489 |
$checkbox = sprintf( |
|
490 |
'<label class="screen-reader-text" for="user_%1$s">%2$s</label>' . |
|
491 |
'<input type="checkbox" name="users[]" id="user_%1$s" class="%3$s" value="%1$s" />', |
|
492 |
$user_object->ID, |
|
493 |
/* translators: %s: User login. */ |
|
494 |
sprintf( __( 'Select %s' ), $user_object->user_login ), |
|
495 |
$role_classes |
|
496 |
); |
|
0 | 497 |
|
498 |
} else { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
499 |
$edit = "<strong>{$user_object->user_login}{$super_admin}</strong>"; |
0 | 500 |
} |
16 | 501 |
|
0 | 502 |
$avatar = get_avatar( $user_object->ID, 32 ); |
503 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
504 |
// Comma-separated list of user roles. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
505 |
$roles_list = implode( ', ', $user_roles ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
506 |
|
5 | 507 |
$r = "<tr id='user-$user_object->ID'>"; |
0 | 508 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
509 |
list( $columns, $hidden, $sortable, $primary ) = $this->get_column_info(); |
0 | 510 |
|
511 |
foreach ( $columns as $column_name => $column_display_name ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
512 |
$classes = "$column_name column-$column_name"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
513 |
if ( $primary === $column_name ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
514 |
$classes .= ' has-row-actions column-primary'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
515 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
516 |
if ( 'posts' === $column_name ) { |
16 | 517 |
$classes .= ' num'; // Special case for that column. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
518 |
} |
0 | 519 |
|
16 | 520 |
if ( in_array( $column_name, $hidden, true ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
521 |
$classes .= ' hidden'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
522 |
} |
0 | 523 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
524 |
$data = 'data-colname="' . wp_strip_all_tags( $column_display_name ) . '"'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
525 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
526 |
$attributes = "class='$classes' $data"; |
0 | 527 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
528 |
if ( 'cb' === $column_name ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
529 |
$r .= "<th scope='row' class='check-column'>$checkbox</th>"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
530 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
531 |
$r .= "<td $attributes>"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
532 |
switch ( $column_name ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
533 |
case 'username': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
534 |
$r .= "$avatar $edit"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
535 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
536 |
case 'name': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
537 |
if ( $user_object->first_name && $user_object->last_name ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
538 |
$r .= "$user_object->first_name $user_object->last_name"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
539 |
} elseif ( $user_object->first_name ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
540 |
$r .= $user_object->first_name; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
541 |
} elseif ( $user_object->last_name ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
542 |
$r .= $user_object->last_name; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
543 |
} else { |
16 | 544 |
$r .= sprintf( |
545 |
'<span aria-hidden="true">—</span><span class="screen-reader-text">%s</span>', |
|
546 |
_x( 'Unknown', 'name' ) |
|
547 |
); |
|
7
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 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
550 |
case 'email': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
551 |
$r .= "<a href='" . esc_url( "mailto:$email" ) . "'>$email</a>"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
552 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
553 |
case 'role': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
554 |
$r .= esc_html( $roles_list ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
555 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
556 |
case 'posts': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
557 |
if ( $numposts > 0 ) { |
16 | 558 |
$r .= sprintf( |
559 |
'<a href="%s" class="edit"><span aria-hidden="true">%s</span><span class="screen-reader-text">%s</span></a>', |
|
560 |
"edit.php?author={$user_object->ID}", |
|
561 |
$numposts, |
|
562 |
sprintf( |
|
563 |
/* translators: %s: Number of posts. */ |
|
564 |
_n( '%s post by this author', '%s posts by this author', $numposts ), |
|
565 |
number_format_i18n( $numposts ) |
|
566 |
) |
|
567 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
568 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
569 |
$r .= 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
570 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
571 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
572 |
default: |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
573 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
574 |
* 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
|
575 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
576 |
* @since 2.8.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
577 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
578 |
* @param string $output Custom column output. Default empty. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
579 |
* @param string $column_name Column name. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
580 |
* @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
|
581 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
582 |
$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
|
583 |
} |
5 | 584 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
585 |
if ( $primary === $column_name ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
586 |
$r .= $this->row_actions( $actions ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
587 |
} |
9 | 588 |
$r .= '</td>'; |
0 | 589 |
} |
590 |
} |
|
591 |
$r .= '</tr>'; |
|
592 |
||
593 |
return $r; |
|
594 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
595 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
596 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
597 |
* Gets the name of the default primary column. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
598 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
599 |
* @since 4.3.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
600 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
601 |
* @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
|
602 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
603 |
protected function get_default_primary_column_name() { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
604 |
return 'username'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
605 |
} |
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 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
608 |
* Returns an array of user roles for a given user object. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
609 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
610 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
611 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
612 |
* @param WP_User $user_object The WP_User object. |
9 | 613 |
* @return string[] An array of user roles. |
7
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 |
protected function get_role_list( $user_object ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
616 |
$wp_roles = wp_roles(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
617 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
618 |
$role_list = array(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
619 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
620 |
foreach ( $user_object->roles as $role ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
621 |
if ( isset( $wp_roles->role_names[ $role ] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
622 |
$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
|
623 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
624 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
625 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
626 |
if ( empty( $role_list ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
627 |
$role_list['none'] = _x( 'None', 'no user roles' ); |
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 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
631 |
* Filters the returned array of roles for a user. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
632 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
633 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
634 |
* |
9 | 635 |
* @param string[] $role_list An array of user roles. |
636 |
* @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
|
637 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
638 |
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
|
639 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
640 |
|
0 | 641 |
} |