2010-10-25 04:57:43 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2015-10-17 17:13:25 +02:00
|
|
|
* List Table API: WP_Users_List_Table class
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
* @since 3.1.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Core class used to implement displaying users in a list table.
|
2010-10-25 04:57:43 +02:00
|
|
|
*
|
2010-10-25 06:04:18 +02:00
|
|
|
* @since 3.1.0
|
2011-01-16 22:47:24 +01:00
|
|
|
* @access private
|
2014-02-26 23:20:17 +01:00
|
|
|
*
|
2015-10-17 17:13:25 +02:00
|
|
|
* @see WP_List_Table
|
2010-10-25 04:57:43 +02:00
|
|
|
*/
|
2010-11-04 09:07:03 +01:00
|
|
|
class WP_Users_List_Table extends WP_List_Table {
|
2010-12-13 22:21:50 +01:00
|
|
|
|
2014-02-26 23:20:17 +01:00
|
|
|
/**
|
|
|
|
* Site ID to generate the Users list table for.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
* @var int
|
|
|
|
*/
|
2014-05-19 03:19:14 +02:00
|
|
|
public $site_id;
|
2014-02-26 23:20:17 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether or not the current Users list table is for Multisite.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
* @var bool
|
|
|
|
*/
|
2014-05-19 03:19:14 +02:00
|
|
|
public $is_site_users;
|
2010-12-13 22:21:50 +01:00
|
|
|
|
2014-02-26 23:20:17 +01:00
|
|
|
/**
|
|
|
|
* Constructor.
|
2014-09-04 17:23:16 +02:00
|
|
|
*
|
2014-02-26 23:20:17 +01:00
|
|
|
* @since 3.1.0
|
2014-08-10 04:18:17 +02:00
|
|
|
*
|
|
|
|
* @see WP_List_Table::__construct() for more information on default arguments.
|
|
|
|
*
|
|
|
|
* @param array $args An associative array of arguments.
|
2014-09-04 17:23:16 +02:00
|
|
|
*/
|
2014-05-19 03:19:14 +02:00
|
|
|
public function __construct( $args = array() ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
parent::__construct(
|
|
|
|
array(
|
|
|
|
'singular' => 'user',
|
|
|
|
'plural' => 'users',
|
|
|
|
'screen' => isset( $args['screen'] ) ? $args['screen'] : null,
|
|
|
|
)
|
|
|
|
);
|
2012-09-19 14:43:31 +02:00
|
|
|
|
2015-09-22 08:06:25 +02:00
|
|
|
$this->is_site_users = 'site-users-network' === $this->screen->id;
|
2012-09-19 14:43:31 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $this->is_site_users ) {
|
2020-10-08 23:15:13 +02:00
|
|
|
$this->site_id = isset( $_REQUEST['id'] ) ? (int) $_REQUEST['id'] : 0;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-11-24 06:31:25 +01:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2014-02-26 23:20:17 +01:00
|
|
|
/**
|
|
|
|
* Check the current user's permissions.
|
|
|
|
*
|
2017-12-01 00:11:00 +01:00
|
|
|
* @since 3.1.0
|
2015-05-29 22:17:26 +02:00
|
|
|
*
|
|
|
|
* @return bool
|
2014-02-26 23:20:17 +01:00
|
|
|
*/
|
2014-05-19 03:19:14 +02:00
|
|
|
public function ajax_user_can() {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $this->is_site_users ) {
|
2010-12-16 10:18:28 +01:00
|
|
|
return current_user_can( 'manage_sites' );
|
2017-12-01 00:11:00 +01:00
|
|
|
} else {
|
2010-12-16 10:18:28 +01:00
|
|
|
return current_user_can( 'list_users' );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2014-02-26 23:20:17 +01:00
|
|
|
/**
|
|
|
|
* Prepare the users list for display.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
2015-05-28 23:41:30 +02:00
|
|
|
*
|
|
|
|
* @global string $role
|
|
|
|
* @global string $usersearch
|
2014-02-26 23:20:17 +01:00
|
|
|
*/
|
2014-05-19 03:19:14 +02:00
|
|
|
public function prepare_items() {
|
2010-10-25 04:57:43 +02:00
|
|
|
global $role, $usersearch;
|
|
|
|
|
2014-02-02 23:10:12 +01:00
|
|
|
$usersearch = isset( $_REQUEST['s'] ) ? wp_unslash( trim( $_REQUEST['s'] ) ) : '';
|
2010-10-25 04:57:43 +02:00
|
|
|
|
|
|
|
$role = isset( $_REQUEST['role'] ) ? $_REQUEST['role'] : '';
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$per_page = ( $this->is_site_users ) ? 'site_users_network_per_page' : 'users_per_page';
|
2010-11-24 17:54:53 +01:00
|
|
|
$users_per_page = $this->get_items_per_page( $per_page );
|
2010-10-25 04:57:43 +02:00
|
|
|
|
|
|
|
$paged = $this->get_pagenum();
|
|
|
|
|
2015-10-09 00:07:47 +02:00
|
|
|
if ( 'none' === $role ) {
|
|
|
|
$args = array(
|
2017-12-01 00:11:00 +01:00
|
|
|
'number' => $users_per_page,
|
|
|
|
'offset' => ( $paged - 1 ) * $users_per_page,
|
2017-07-25 02:24:43 +02:00
|
|
|
'include' => wp_get_users_with_no_role( $this->site_id ),
|
2017-12-01 00:11:00 +01:00
|
|
|
'search' => $usersearch,
|
|
|
|
'fields' => 'all_with_meta',
|
2015-10-09 00:07:47 +02:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$args = array(
|
|
|
|
'number' => $users_per_page,
|
2017-12-01 00:11:00 +01:00
|
|
|
'offset' => ( $paged - 1 ) * $users_per_page,
|
|
|
|
'role' => $role,
|
2015-10-09 00:07:47 +02:00
|
|
|
'search' => $usersearch,
|
2017-12-01 00:11:00 +01:00
|
|
|
'fields' => 'all_with_meta',
|
2015-10-09 00:07:47 +02:00
|
|
|
);
|
|
|
|
}
|
2010-12-13 22:21:50 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( '' !== $args['search'] ) {
|
2011-06-07 18:05:04 +02:00
|
|
|
$args['search'] = '*' . $args['search'] . '*';
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-12-31 00:38:21 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $this->is_site_users ) {
|
2010-11-24 06:31:25 +01:00
|
|
|
$args['blog_id'] = $this->site_id;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( isset( $_REQUEST['orderby'] ) ) {
|
2010-10-25 04:57:43 +02:00
|
|
|
$args['orderby'] = $_REQUEST['orderby'];
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( isset( $_REQUEST['order'] ) ) {
|
2010-10-25 04:57:43 +02:00
|
|
|
$args['order'] = $_REQUEST['order'];
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2015-10-03 09:24:25 +02:00
|
|
|
/**
|
2016-05-22 20:01:30 +02:00
|
|
|
* Filters the query arguments used to retrieve users for the current users list table.
|
2015-10-03 09:24:25 +02:00
|
|
|
*
|
|
|
|
* @since 4.4.0
|
|
|
|
*
|
|
|
|
* @param array $args Arguments passed to WP_User_Query to retrieve items for the current
|
|
|
|
* users list table.
|
|
|
|
*/
|
2015-10-03 23:49:24 +02:00
|
|
|
$args = apply_filters( 'users_list_table_query_args', $args );
|
2015-10-03 09:24:25 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Query the user IDs for this page.
|
2010-10-25 04:57:43 +02:00
|
|
|
$wp_user_search = new WP_User_Query( $args );
|
|
|
|
|
|
|
|
$this->items = $wp_user_search->get_results();
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->set_pagination_args(
|
|
|
|
array(
|
|
|
|
'total_items' => $wp_user_search->get_total(),
|
|
|
|
'per_page' => $users_per_page,
|
|
|
|
)
|
|
|
|
);
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2014-02-26 23:20:17 +01:00
|
|
|
/**
|
|
|
|
* Output 'no users' message.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*/
|
2014-05-19 03:19:14 +02:00
|
|
|
public function no_items() {
|
2015-03-11 16:25:28 +01:00
|
|
|
_e( 'No users found.' );
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2014-02-26 23:20:17 +01:00
|
|
|
/**
|
|
|
|
* Return an associative array listing all the views that can be used
|
|
|
|
* with this table.
|
|
|
|
*
|
|
|
|
* Provides a list of roles and user count for that role for easy
|
2016-05-22 20:01:30 +02:00
|
|
|
* Filtersing of the user table.
|
2014-02-26 23:20:17 +01:00
|
|
|
*
|
2020-01-29 01:45:18 +01:00
|
|
|
* @since 3.1.0
|
2014-02-26 23:20:17 +01:00
|
|
|
*
|
2015-05-28 23:41:30 +02:00
|
|
|
* @global string $role
|
|
|
|
*
|
2019-11-05 22:30:03 +01:00
|
|
|
* @return string[] An array of HTML links keyed by their view.
|
2014-02-26 23:20:17 +01:00
|
|
|
*/
|
2014-07-14 00:09:16 +02:00
|
|
|
protected function get_views() {
|
2015-05-28 23:41:30 +02:00
|
|
|
global $role;
|
|
|
|
|
|
|
|
$wp_roles = wp_roles();
|
2010-10-25 04:57:43 +02:00
|
|
|
|
Users: Introduce the concept of a large site to single site installations.
Currently in WordPress multisite there is a concept of large networks. The function `wp_is_large_network` is used to determine if a network has a large number of sites or users. If a network is marked as large, then
expensive queries to calculate user counts are not run on page load but deferred to scheduled events. However there are a number of places in a single site installation where this functionality would also be useful, as
expensive calls to count users and roles can make screens in the admin extremely slow.
In this change, the `get_user_count` function and related functionality around it is ported to be available in a single site context. This means that expensive calls to the `count_users` function are replaced with
calls to `get_user_count`. This change also includes a new function called `wp_is_large_user_count` and a filter of the same name, to mark if a site is large.
Props johnbillion, Spacedmonkey, Mista-Flo, lumpysimon, tharsheblows, obenland, miss_jwo, jrchamp, flixos90, macbookandrew, pento, desrosj, johnjamesjacoby, jb510, davidbaumwald, costdev.
Fixes #38741.
Built from https://develop.svn.wordpress.org/trunk@53011
git-svn-id: http://core.svn.wordpress.org/trunk@52600 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-29 14:42:13 +02:00
|
|
|
$count_users = ! wp_is_large_user_count();
|
|
|
|
|
2010-11-24 06:31:25 +01:00
|
|
|
if ( $this->is_site_users ) {
|
2010-12-13 22:21:50 +01:00
|
|
|
$url = 'site-users.php?id=' . $this->site_id;
|
2010-11-24 06:31:25 +01:00
|
|
|
} else {
|
Users: Introduce the concept of a large site to single site installations.
Currently in WordPress multisite there is a concept of large networks. The function `wp_is_large_network` is used to determine if a network has a large number of sites or users. If a network is marked as large, then
expensive queries to calculate user counts are not run on page load but deferred to scheduled events. However there are a number of places in a single site installation where this functionality would also be useful, as
expensive calls to count users and roles can make screens in the admin extremely slow.
In this change, the `get_user_count` function and related functionality around it is ported to be available in a single site context. This means that expensive calls to the `count_users` function are replaced with
calls to `get_user_count`. This change also includes a new function called `wp_is_large_user_count` and a filter of the same name, to mark if a site is large.
Props johnbillion, Spacedmonkey, Mista-Flo, lumpysimon, tharsheblows, obenland, miss_jwo, jrchamp, flixos90, macbookandrew, pento, desrosj, johnjamesjacoby, jb510, davidbaumwald, costdev.
Fixes #38741.
Built from https://develop.svn.wordpress.org/trunk@53011
git-svn-id: http://core.svn.wordpress.org/trunk@52600 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-29 14:42:13 +02:00
|
|
|
$url = 'users.php';
|
2010-11-24 06:31:25 +01:00
|
|
|
}
|
2015-10-09 00:07:47 +02:00
|
|
|
|
Users: Introduce the concept of a large site to single site installations.
Currently in WordPress multisite there is a concept of large networks. The function `wp_is_large_network` is used to determine if a network has a large number of sites or users. If a network is marked as large, then
expensive queries to calculate user counts are not run on page load but deferred to scheduled events. However there are a number of places in a single site installation where this functionality would also be useful, as
expensive calls to count users and roles can make screens in the admin extremely slow.
In this change, the `get_user_count` function and related functionality around it is ported to be available in a single site context. This means that expensive calls to the `count_users` function are replaced with
calls to `get_user_count`. This change also includes a new function called `wp_is_large_user_count` and a filter of the same name, to mark if a site is large.
Props johnbillion, Spacedmonkey, Mista-Flo, lumpysimon, tharsheblows, obenland, miss_jwo, jrchamp, flixos90, macbookandrew, pento, desrosj, johnjamesjacoby, jb510, davidbaumwald, costdev.
Fixes #38741.
Built from https://develop.svn.wordpress.org/trunk@53011
git-svn-id: http://core.svn.wordpress.org/trunk@52600 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-29 14:42:13 +02:00
|
|
|
$role_links = array();
|
|
|
|
$avail_roles = array();
|
|
|
|
$all_text = __( 'All' );
|
2017-10-02 21:44:47 +02:00
|
|
|
$current_link_attributes = empty( $role ) ? ' class="current" aria-current="page"' : '';
|
|
|
|
|
Users: Introduce the concept of a large site to single site installations.
Currently in WordPress multisite there is a concept of large networks. The function `wp_is_large_network` is used to determine if a network has a large number of sites or users. If a network is marked as large, then
expensive queries to calculate user counts are not run on page load but deferred to scheduled events. However there are a number of places in a single site installation where this functionality would also be useful, as
expensive calls to count users and roles can make screens in the admin extremely slow.
In this change, the `get_user_count` function and related functionality around it is ported to be available in a single site context. This means that expensive calls to the `count_users` function are replaced with
calls to `get_user_count`. This change also includes a new function called `wp_is_large_user_count` and a filter of the same name, to mark if a site is large.
Props johnbillion, Spacedmonkey, Mista-Flo, lumpysimon, tharsheblows, obenland, miss_jwo, jrchamp, flixos90, macbookandrew, pento, desrosj, johnjamesjacoby, jb510, davidbaumwald, costdev.
Fixes #38741.
Built from https://develop.svn.wordpress.org/trunk@53011
git-svn-id: http://core.svn.wordpress.org/trunk@52600 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-29 14:42:13 +02:00
|
|
|
if ( $count_users ) {
|
|
|
|
if ( $this->is_site_users ) {
|
|
|
|
switch_to_blog( $this->site_id );
|
|
|
|
$users_of_blog = count_users( 'time', $this->site_id );
|
|
|
|
restore_current_blog();
|
|
|
|
} else {
|
|
|
|
$users_of_blog = count_users();
|
|
|
|
}
|
|
|
|
|
|
|
|
$total_users = $users_of_blog['total_users'];
|
|
|
|
$avail_roles =& $users_of_blog['avail_roles'];
|
|
|
|
unset( $users_of_blog );
|
|
|
|
|
|
|
|
$all_text = sprintf(
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Number of users. */
|
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
|
|
|
_nx(
|
|
|
|
'All <span class="count">(%s)</span>',
|
|
|
|
'All <span class="count">(%s)</span>',
|
|
|
|
$total_users,
|
|
|
|
'users'
|
|
|
|
),
|
|
|
|
number_format_i18n( $total_users )
|
Users: Introduce the concept of a large site to single site installations.
Currently in WordPress multisite there is a concept of large networks. The function `wp_is_large_network` is used to determine if a network has a large number of sites or users. If a network is marked as large, then
expensive queries to calculate user counts are not run on page load but deferred to scheduled events. However there are a number of places in a single site installation where this functionality would also be useful, as
expensive calls to count users and roles can make screens in the admin extremely slow.
In this change, the `get_user_count` function and related functionality around it is ported to be available in a single site context. This means that expensive calls to the `count_users` function are replaced with
calls to `get_user_count`. This change also includes a new function called `wp_is_large_user_count` and a filter of the same name, to mark if a site is large.
Props johnbillion, Spacedmonkey, Mista-Flo, lumpysimon, tharsheblows, obenland, miss_jwo, jrchamp, flixos90, macbookandrew, pento, desrosj, johnjamesjacoby, jb510, davidbaumwald, costdev.
Fixes #38741.
Built from https://develop.svn.wordpress.org/trunk@53011
git-svn-id: http://core.svn.wordpress.org/trunk@52600 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-29 14:42:13 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$role_links['all'] = sprintf( '<a href="%s"%s>%s</a>', $url, $current_link_attributes, $all_text );
|
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
|
|
|
|
2010-10-25 04:57:43 +02:00
|
|
|
foreach ( $wp_roles->get_names() as $this_role => $name ) {
|
Users: Introduce the concept of a large site to single site installations.
Currently in WordPress multisite there is a concept of large networks. The function `wp_is_large_network` is used to determine if a network has a large number of sites or users. If a network is marked as large, then
expensive queries to calculate user counts are not run on page load but deferred to scheduled events. However there are a number of places in a single site installation where this functionality would also be useful, as
expensive calls to count users and roles can make screens in the admin extremely slow.
In this change, the `get_user_count` function and related functionality around it is ported to be available in a single site context. This means that expensive calls to the `count_users` function are replaced with
calls to `get_user_count`. This change also includes a new function called `wp_is_large_user_count` and a filter of the same name, to mark if a site is large.
Props johnbillion, Spacedmonkey, Mista-Flo, lumpysimon, tharsheblows, obenland, miss_jwo, jrchamp, flixos90, macbookandrew, pento, desrosj, johnjamesjacoby, jb510, davidbaumwald, costdev.
Fixes #38741.
Built from https://develop.svn.wordpress.org/trunk@53011
git-svn-id: http://core.svn.wordpress.org/trunk@52600 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-29 14:42:13 +02:00
|
|
|
if ( $count_users && ! isset( $avail_roles[ $this_role ] ) ) {
|
2010-10-25 04:57:43 +02:00
|
|
|
continue;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2017-10-02 21:44:47 +02:00
|
|
|
$current_link_attributes = '';
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2015-09-22 08:06:25 +02:00
|
|
|
if ( $this_role === $role ) {
|
2017-10-02 21:44:47 +02:00
|
|
|
$current_link_attributes = ' class="current" aria-current="page"';
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$name = translate_user_role( $name );
|
Users: Introduce the concept of a large site to single site installations.
Currently in WordPress multisite there is a concept of large networks. The function `wp_is_large_network` is used to determine if a network has a large number of sites or users. If a network is marked as large, then
expensive queries to calculate user counts are not run on page load but deferred to scheduled events. However there are a number of places in a single site installation where this functionality would also be useful, as
expensive calls to count users and roles can make screens in the admin extremely slow.
In this change, the `get_user_count` function and related functionality around it is ported to be available in a single site context. This means that expensive calls to the `count_users` function are replaced with
calls to `get_user_count`. This change also includes a new function called `wp_is_large_user_count` and a filter of the same name, to mark if a site is large.
Props johnbillion, Spacedmonkey, Mista-Flo, lumpysimon, tharsheblows, obenland, miss_jwo, jrchamp, flixos90, macbookandrew, pento, desrosj, johnjamesjacoby, jb510, davidbaumwald, costdev.
Fixes #38741.
Built from https://develop.svn.wordpress.org/trunk@53011
git-svn-id: http://core.svn.wordpress.org/trunk@52600 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-29 14:42:13 +02:00
|
|
|
if ( $count_users ) {
|
|
|
|
$name = sprintf(
|
|
|
|
/* translators: 1: User role name, 2: Number of users. */
|
|
|
|
__( '%1$s <span class="count">(%2$s)</span>' ),
|
|
|
|
$name,
|
|
|
|
number_format_i18n( $avail_roles[ $this_role ] )
|
|
|
|
);
|
|
|
|
}
|
2019-09-03 02:41:05 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$role_links[ $this_role ] = "<a href='" . esc_url( add_query_arg( 'role', $this_role, $url ) ) . "'$current_link_attributes>$name</a>";
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! empty( $avail_roles['none'] ) ) {
|
2015-10-09 00:07:47 +02:00
|
|
|
|
2017-10-02 21:44:47 +02:00
|
|
|
$current_link_attributes = '';
|
2015-10-09 00:07:47 +02:00
|
|
|
|
|
|
|
if ( 'none' === $role ) {
|
2017-10-02 21:44:47 +02:00
|
|
|
$current_link_attributes = ' class="current" aria-current="page"';
|
2015-10-09 00:07:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$name = __( 'No role' );
|
2019-09-03 02:41:05 +02:00
|
|
|
$name = sprintf(
|
2020-01-20 15:08:05 +01:00
|
|
|
/* translators: 1: User role name, 2: Number of users. */
|
2019-09-03 02:41:05 +02:00
|
|
|
__( '%1$s <span class="count">(%2$s)</span>' ),
|
|
|
|
$name,
|
|
|
|
number_format_i18n( $avail_roles['none'] )
|
|
|
|
);
|
2015-10-09 00:07:47 +02:00
|
|
|
|
2019-09-03 02:41:05 +02:00
|
|
|
$role_links['none'] = "<a href='" . esc_url( add_query_arg( 'role', 'none', $url ) ) . "'$current_link_attributes>$name</a>";
|
2015-10-09 00:07:47 +02:00
|
|
|
}
|
|
|
|
|
2010-10-25 04:57:43 +02:00
|
|
|
return $role_links;
|
|
|
|
}
|
|
|
|
|
2014-02-26 23:20:17 +01:00
|
|
|
/**
|
|
|
|
* Retrieve an associative array of bulk actions available on this table.
|
|
|
|
*
|
2020-01-29 01:45:18 +01:00
|
|
|
* @since 3.1.0
|
2014-02-26 23:20:17 +01:00
|
|
|
*
|
2020-10-18 18:22:10 +02:00
|
|
|
* @return array Array of bulk action labels keyed by their action.
|
2014-02-26 23:20:17 +01:00
|
|
|
*/
|
2014-07-14 00:09:16 +02:00
|
|
|
protected function get_bulk_actions() {
|
2010-10-25 04:57:43 +02:00
|
|
|
$actions = array();
|
|
|
|
|
2011-02-10 21:37:26 +01:00
|
|
|
if ( is_multisite() ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( current_user_can( 'remove_users' ) ) {
|
2011-02-10 21:37:26 +01:00
|
|
|
$actions['remove'] = __( 'Remove' );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2011-02-10 21:37:26 +01:00
|
|
|
} else {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( current_user_can( 'delete_users' ) ) {
|
2011-02-10 21:37:26 +01:00
|
|
|
$actions['delete'] = __( 'Delete' );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2011-02-10 21:37:26 +01:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
Users: enable admins to send users a reset password link.
Add a feature so Admins can send users a 'password reset' email. This doesn't change the password or force a password change. It only emails the user the password reset link.
The feature appears in several places:
* A "Send Reset Link" button on user profile screen.
* A "Send password reset" option in the user list bulk action dropdown.
* A "Send password reset" quick action when hovering over a username in the user list.
Props Ipstenu, DrewAPicture, eventualo, wonderboymusic, knutsp, ericlewis, afercia, JoshuaWold, johnbillion, paaljoachim, hedgefield.
Fixes #34281.
Built from https://develop.svn.wordpress.org/trunk@50129
git-svn-id: http://core.svn.wordpress.org/trunk@49808 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-02-01 23:13:03 +01:00
|
|
|
// Add a password reset link to the bulk actions dropdown.
|
|
|
|
if ( current_user_can( 'edit_users' ) ) {
|
|
|
|
$actions['resetpassword'] = __( 'Send password reset' );
|
|
|
|
}
|
|
|
|
|
2010-10-25 04:57:43 +02:00
|
|
|
return $actions;
|
|
|
|
}
|
|
|
|
|
2014-02-26 23:20:17 +01:00
|
|
|
/**
|
|
|
|
* Output the controls to allow user roles to be changed in bulk.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*
|
|
|
|
* @param string $which Whether this is being invoked above ("top")
|
|
|
|
* or below the table ("bottom").
|
|
|
|
*/
|
2014-07-14 00:09:16 +02:00
|
|
|
protected function extra_tablenav( $which ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$id = 'bottom' === $which ? 'new_role2' : 'new_role';
|
2017-05-23 19:58:43 +02:00
|
|
|
$button_id = 'bottom' === $which ? 'changeit2' : 'changeit';
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2010-10-25 04:57:43 +02:00
|
|
|
<div class="alignleft actions">
|
2015-09-30 02:47:27 +02:00
|
|
|
<?php if ( current_user_can( 'promote_users' ) && $this->has_items() ) : ?>
|
2017-12-01 00:11:00 +01:00
|
|
|
<label class="screen-reader-text" for="<?php echo $id; ?>"><?php _e( 'Change role to…' ); ?></label>
|
|
|
|
<select name="<?php echo $id; ?>" id="<?php echo $id; ?>">
|
|
|
|
<option value=""><?php _e( 'Change role to…' ); ?></option>
|
2010-10-25 04:57:43 +02:00
|
|
|
<?php wp_dropdown_roles(); ?>
|
2021-02-05 15:43:03 +01:00
|
|
|
<option value="none"><?php _e( '— No role for this site —' ); ?></option>
|
2010-10-25 04:57:43 +02:00
|
|
|
</select>
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php
|
2017-05-23 19:58:43 +02:00
|
|
|
submit_button( __( 'Change' ), '', $button_id, false );
|
2012-11-07 08:59:46 +01:00
|
|
|
endif;
|
|
|
|
|
2014-03-01 16:00:15 +01:00
|
|
|
/**
|
2014-03-02 21:32:15 +01:00
|
|
|
* Fires just before the closing div containing the bulk role-change controls
|
2014-03-01 16:00:15 +01:00
|
|
|
* in the Users list table.
|
|
|
|
*
|
|
|
|
* @since 3.5.0
|
2016-05-12 17:13:27 +02:00
|
|
|
* @since 4.6.0 The `$which` parameter was added.
|
|
|
|
*
|
|
|
|
* @param string $which The location of the extra table nav markup: 'top' or 'bottom'.
|
2014-03-01 16:00:15 +01:00
|
|
|
*/
|
2016-05-12 17:13:27 +02:00
|
|
|
do_action( 'restrict_manage_users', $which );
|
2019-01-12 07:41:52 +01:00
|
|
|
?>
|
2017-07-01 05:02:41 +02:00
|
|
|
</div>
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php
|
2017-07-01 05:02:41 +02:00
|
|
|
/**
|
|
|
|
* Fires immediately following the closing "actions" div in the tablenav for the users
|
|
|
|
* list table.
|
|
|
|
*
|
|
|
|
* @since 4.9.0
|
|
|
|
*
|
|
|
|
* @param string $which The location of the extra table nav markup: 'top' or 'bottom'.
|
|
|
|
*/
|
|
|
|
do_action( 'manage_users_extra_tablenav', $which );
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2014-02-26 23:20:17 +01:00
|
|
|
/**
|
|
|
|
* Capture the bulk action required, and return it.
|
|
|
|
*
|
|
|
|
* Overridden from the base class implementation to capture
|
|
|
|
* the role change drop-down.
|
|
|
|
*
|
2020-01-29 01:45:18 +01:00
|
|
|
* @since 3.1.0
|
2014-02-26 23:20:17 +01:00
|
|
|
*
|
|
|
|
* @return string The bulk action required.
|
|
|
|
*/
|
2014-05-19 03:19:14 +02:00
|
|
|
public function current_action() {
|
2021-01-07 17:23:07 +01:00
|
|
|
if ( isset( $_REQUEST['changeit'] ) && ! empty( $_REQUEST['new_role'] ) ) {
|
2010-10-25 04:57:43 +02:00
|
|
|
return 'promote';
|
2015-09-27 21:11:26 +02:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
|
|
|
return parent::current_action();
|
|
|
|
}
|
|
|
|
|
2014-02-26 23:20:17 +01:00
|
|
|
/**
|
|
|
|
* Get a list of columns for the list table.
|
|
|
|
*
|
2020-01-29 01:45:18 +01:00
|
|
|
* @since 3.1.0
|
2014-02-26 23:20:17 +01:00
|
|
|
*
|
2019-11-05 22:30:03 +01:00
|
|
|
* @return string[] Array of column titles keyed by their column name.
|
2014-02-26 23:20:17 +01:00
|
|
|
*/
|
2014-05-19 03:19:14 +02:00
|
|
|
public function get_columns() {
|
2010-11-24 20:51:36 +01:00
|
|
|
$c = array(
|
2010-10-25 04:57:43 +02:00
|
|
|
'cb' => '<input type="checkbox" />',
|
2010-11-17 17:58:15 +01:00
|
|
|
'username' => __( 'Username' ),
|
2010-10-25 04:57:43 +02:00
|
|
|
'name' => __( 'Name' ),
|
2015-08-28 05:17:21 +02:00
|
|
|
'email' => __( 'Email' ),
|
2010-10-25 04:57:43 +02:00
|
|
|
'role' => __( 'Role' ),
|
2021-12-31 16:30:01 +01:00
|
|
|
'posts' => _x( 'Posts', 'post type general name' ),
|
2010-10-25 04:57:43 +02:00
|
|
|
);
|
2010-11-24 20:51:36 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $this->is_site_users ) {
|
2010-11-24 20:51:36 +01:00
|
|
|
unset( $c['posts'] );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-12-13 22:21:50 +01:00
|
|
|
|
2010-11-24 20:51:36 +01:00
|
|
|
return $c;
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2014-02-26 23:20:17 +01:00
|
|
|
/**
|
|
|
|
* Get a list of sortable columns for the list table.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*
|
|
|
|
* @return array Array of sortable columns.
|
|
|
|
*/
|
2014-07-14 00:09:16 +02:00
|
|
|
protected function get_sortable_columns() {
|
2010-11-24 20:51:36 +01:00
|
|
|
$c = array(
|
2010-10-25 04:57:43 +02:00
|
|
|
'username' => 'login',
|
|
|
|
'email' => 'email',
|
|
|
|
);
|
2010-12-13 22:21:50 +01:00
|
|
|
|
2010-11-24 20:51:36 +01:00
|
|
|
return $c;
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2014-02-26 23:20:17 +01:00
|
|
|
/**
|
|
|
|
* Generate the list table rows.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*/
|
2014-05-19 03:19:14 +02:00
|
|
|
public function display_rows() {
|
2020-01-29 01:45:18 +01:00
|
|
|
// Query the post counts for this page.
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $this->is_site_users ) {
|
2010-12-07 21:54:04 +01:00
|
|
|
$post_counts = count_many_users_posts( array_keys( $this->items ) );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
|
|
|
foreach ( $this->items as $userid => $user_object ) {
|
2015-10-08 23:59:25 +02:00
|
|
|
echo "\n\t" . $this->single_row( $user_object, '', '', isset( $post_counts ) ? $post_counts[ $userid ] : 0 );
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate HTML for a single row on the users.php admin panel.
|
|
|
|
*
|
2014-02-26 23:20:17 +01:00
|
|
|
* @since 3.1.0
|
2015-10-08 23:59:25 +02:00
|
|
|
* @since 4.2.0 The `$style` parameter was deprecated.
|
|
|
|
* @since 4.4.0 The `$role` parameter was deprecated.
|
2010-10-25 04:57:43 +02:00
|
|
|
*
|
2017-01-10 13:45:44 +01:00
|
|
|
* @param WP_User $user_object The current user object.
|
|
|
|
* @param string $style Deprecated. Not used.
|
|
|
|
* @param string $role Deprecated. Not used.
|
|
|
|
* @param int $numposts Optional. Post count to display for this user. Defaults
|
|
|
|
* to zero, as in, a new user has made zero posts.
|
2014-02-26 23:20:17 +01:00
|
|
|
* @return string Output for a single row.
|
2010-10-25 04:57:43 +02:00
|
|
|
*/
|
2014-05-19 03:19:14 +02:00
|
|
|
public function single_row( $user_object, $style = '', $role = '', $numposts = 0 ) {
|
2015-01-16 02:06:24 +01:00
|
|
|
if ( ! ( $user_object instanceof WP_User ) ) {
|
2012-08-03 03:06:05 +02:00
|
|
|
$user_object = get_userdata( (int) $user_object );
|
2015-01-16 02:06:24 +01:00
|
|
|
}
|
2011-08-24 21:32:59 +02:00
|
|
|
$user_object->filter = 'display';
|
2017-12-01 00:11:00 +01:00
|
|
|
$email = $user_object->user_email;
|
2010-12-13 22:21:50 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $this->is_site_users ) {
|
2010-11-24 06:31:25 +01:00
|
|
|
$url = "site-users.php?id={$this->site_id}&";
|
2017-12-01 00:11:00 +01:00
|
|
|
} else {
|
2010-11-24 06:31:25 +01:00
|
|
|
$url = 'users.php?';
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-11-22 18:17:31 +01:00
|
|
|
|
2015-10-08 23:59:25 +02:00
|
|
|
$user_roles = $this->get_role_list( $user_object );
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Set up the hover actions for this user.
|
2017-12-01 00:11:00 +01:00
|
|
|
$actions = array();
|
|
|
|
$checkbox = '';
|
2017-07-25 19:43:42 +02:00
|
|
|
$super_admin = '';
|
|
|
|
|
|
|
|
if ( is_multisite() && current_user_can( 'manage_network_users' ) ) {
|
|
|
|
if ( in_array( $user_object->user_login, get_super_admins(), true ) ) {
|
|
|
|
$super_admin = ' — ' . __( 'Super Admin' );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Check if the user for this row is editable.
|
2010-10-25 04:57:43 +02:00
|
|
|
if ( current_user_can( 'list_users' ) ) {
|
2020-01-29 01:45:18 +01:00
|
|
|
// Set up the user editing link.
|
2022-01-15 21:49:06 +01:00
|
|
|
$edit_link = esc_url(
|
|
|
|
add_query_arg(
|
|
|
|
'wp_http_referer',
|
|
|
|
urlencode( wp_unslash( $_SERVER['REQUEST_URI'] ) ),
|
|
|
|
get_edit_user_link( $user_object->ID )
|
|
|
|
)
|
|
|
|
);
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( current_user_can( 'edit_user', $user_object->ID ) ) {
|
|
|
|
$edit = "<strong><a href=\"{$edit_link}\">{$user_object->user_login}</a>{$super_admin}</strong><br />";
|
2010-10-25 04:57:43 +02:00
|
|
|
$actions['edit'] = '<a href="' . $edit_link . '">' . __( 'Edit' ) . '</a>';
|
|
|
|
} else {
|
2017-07-25 19:43:42 +02:00
|
|
|
$edit = "<strong>{$user_object->user_login}{$super_admin}</strong><br />";
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2022-01-15 21:49:06 +01:00
|
|
|
if ( ! is_multisite()
|
|
|
|
&& get_current_user_id() !== $user_object->ID
|
|
|
|
&& current_user_can( 'delete_user', $user_object->ID )
|
|
|
|
) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$actions['delete'] = "<a class='submitdelete' href='" . wp_nonce_url( "users.php?action=delete&user=$user_object->ID", 'bulk-users' ) . "'>" . __( 'Delete' ) . '</a>';
|
|
|
|
}
|
2022-01-15 21:49:06 +01:00
|
|
|
|
|
|
|
if ( is_multisite()
|
|
|
|
&& current_user_can( 'remove_user', $user_object->ID )
|
|
|
|
) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$actions['remove'] = "<a class='submitdelete' href='" . wp_nonce_url( $url . "action=remove&user=$user_object->ID", 'bulk-users' ) . "'>" . __( 'Remove' ) . '</a>';
|
|
|
|
}
|
2014-03-01 16:00:15 +01:00
|
|
|
|
2017-07-11 15:30:44 +02:00
|
|
|
// Add a link to the user's author archive, if not empty.
|
2017-07-28 16:21:45 +02:00
|
|
|
$author_posts_url = get_author_posts_url( $user_object->ID );
|
|
|
|
if ( $author_posts_url ) {
|
2017-07-11 15:30:44 +02:00
|
|
|
$actions['view'] = sprintf(
|
|
|
|
'<a href="%s" aria-label="%s">%s</a>',
|
|
|
|
esc_url( $author_posts_url ),
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Author's display name. */
|
2017-07-11 15:30:44 +02:00
|
|
|
esc_attr( sprintf( __( 'View posts by %s' ), $user_object->display_name ) ),
|
|
|
|
__( 'View' )
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
Users: enable admins to send users a reset password link.
Add a feature so Admins can send users a 'password reset' email. This doesn't change the password or force a password change. It only emails the user the password reset link.
The feature appears in several places:
* A "Send Reset Link" button on user profile screen.
* A "Send password reset" option in the user list bulk action dropdown.
* A "Send password reset" quick action when hovering over a username in the user list.
Props Ipstenu, DrewAPicture, eventualo, wonderboymusic, knutsp, ericlewis, afercia, JoshuaWold, johnbillion, paaljoachim, hedgefield.
Fixes #34281.
Built from https://develop.svn.wordpress.org/trunk@50129
git-svn-id: http://core.svn.wordpress.org/trunk@49808 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-02-01 23:13:03 +01:00
|
|
|
// Add a link to send the user a reset password link by email.
|
2022-01-15 21:49:06 +01:00
|
|
|
if ( get_current_user_id() !== $user_object->ID
|
|
|
|
&& current_user_can( 'edit_user', $user_object->ID )
|
|
|
|
) {
|
Users: enable admins to send users a reset password link.
Add a feature so Admins can send users a 'password reset' email. This doesn't change the password or force a password change. It only emails the user the password reset link.
The feature appears in several places:
* A "Send Reset Link" button on user profile screen.
* A "Send password reset" option in the user list bulk action dropdown.
* A "Send password reset" quick action when hovering over a username in the user list.
Props Ipstenu, DrewAPicture, eventualo, wonderboymusic, knutsp, ericlewis, afercia, JoshuaWold, johnbillion, paaljoachim, hedgefield.
Fixes #34281.
Built from https://develop.svn.wordpress.org/trunk@50129
git-svn-id: http://core.svn.wordpress.org/trunk@49808 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-02-01 23:13:03 +01:00
|
|
|
$actions['resetpassword'] = "<a class='resetpassword' href='" . wp_nonce_url( "users.php?action=resetpassword&users=$user_object->ID", 'bulk-users' ) . "'>" . __( 'Send password reset' ) . '</a>';
|
|
|
|
}
|
|
|
|
|
2014-03-01 16:00:15 +01:00
|
|
|
/**
|
2016-05-22 20:01:30 +02:00
|
|
|
* Filters the action links displayed under each user in the Users list table.
|
2014-03-01 16:00:15 +01:00
|
|
|
*
|
|
|
|
* @since 2.8.0
|
|
|
|
*
|
2018-03-22 21:27:32 +01:00
|
|
|
* @param string[] $actions An array of action links to be displayed.
|
|
|
|
* Default 'Edit', 'Delete' for single site, and
|
|
|
|
* 'Edit', 'Remove' for Multisite.
|
|
|
|
* @param WP_User $user_object WP_User object for the currently listed user.
|
2014-03-01 16:00:15 +01:00
|
|
|
*/
|
2010-10-25 04:57:43 +02:00
|
|
|
$actions = apply_filters( 'user_row_actions', $actions, $user_object );
|
|
|
|
|
2015-10-08 23:59:25 +02:00
|
|
|
// Role classes.
|
|
|
|
$role_classes = esc_attr( implode( ' ', array_keys( $user_roles ) ) );
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Set up the checkbox (because the user is editable, otherwise it's empty).
|
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
|
|
|
$checkbox = sprintf(
|
|
|
|
'<label class="screen-reader-text" for="user_%1$s">%2$s</label>' .
|
|
|
|
'<input type="checkbox" name="users[]" id="user_%1$s" class="%3$s" value="%1$s" />',
|
|
|
|
$user_object->ID,
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: User login. */
|
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
|
|
|
sprintf( __( 'Select %s' ), $user_object->user_login ),
|
|
|
|
$role_classes
|
|
|
|
);
|
2010-10-25 04:57:43 +02:00
|
|
|
|
|
|
|
} else {
|
2017-07-25 19:43:42 +02:00
|
|
|
$edit = "<strong>{$user_object->user_login}{$super_admin}</strong>";
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
|
|
|
|
2010-10-25 04:57:43 +02:00
|
|
|
$avatar = get_avatar( $user_object->ID, 32 );
|
|
|
|
|
2015-10-08 23:59:25 +02:00
|
|
|
// Comma-separated list of user roles.
|
|
|
|
$roles_list = implode( ', ', $user_roles );
|
|
|
|
|
2015-01-14 23:14:22 +01:00
|
|
|
$r = "<tr id='user-$user_object->ID'>";
|
2010-11-13 21:47:34 +01:00
|
|
|
|
2015-05-29 04:41:25 +02:00
|
|
|
list( $columns, $hidden, $sortable, $primary ) = $this->get_column_info();
|
2010-10-25 04:57:43 +02:00
|
|
|
|
|
|
|
foreach ( $columns as $column_name => $column_display_name ) {
|
2015-05-29 04:41:25 +02:00
|
|
|
$classes = "$column_name column-$column_name";
|
|
|
|
if ( $primary === $column_name ) {
|
|
|
|
$classes .= ' has-row-actions column-primary';
|
|
|
|
}
|
2015-06-10 03:46:27 +02:00
|
|
|
if ( 'posts' === $column_name ) {
|
2020-01-29 01:45:18 +01:00
|
|
|
$classes .= ' num'; // Special case for that column.
|
2015-06-10 03:46:27 +02:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2020-04-05 05:02:11 +02:00
|
|
|
if ( in_array( $column_name, $hidden, true ) ) {
|
2015-06-10 21:47:27 +02:00
|
|
|
$classes .= ' hidden';
|
2015-05-29 04:41:25 +02:00
|
|
|
}
|
|
|
|
|
2021-06-09 00:21:57 +02:00
|
|
|
$data = 'data-colname="' . esc_attr( wp_strip_all_tags( $column_display_name ) ) . '"';
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
|
|
|
|
$attributes = "class='$classes' $data";
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2015-05-29 04:41:25 +02:00
|
|
|
if ( 'cb' === $column_name ) {
|
|
|
|
$r .= "<th scope='row' class='check-column'>$checkbox</th>";
|
|
|
|
} else {
|
|
|
|
$r .= "<td $attributes>";
|
|
|
|
switch ( $column_name ) {
|
|
|
|
case 'username':
|
|
|
|
$r .= "$avatar $edit";
|
|
|
|
break;
|
|
|
|
case 'name':
|
2017-06-27 02:27:39 +02:00
|
|
|
if ( $user_object->first_name && $user_object->last_name ) {
|
|
|
|
$r .= "$user_object->first_name $user_object->last_name";
|
2017-11-29 16:28:53 +01:00
|
|
|
} elseif ( $user_object->first_name ) {
|
|
|
|
$r .= $user_object->first_name;
|
|
|
|
} elseif ( $user_object->last_name ) {
|
|
|
|
$r .= $user_object->last_name;
|
2017-06-27 02:27:39 +02:00
|
|
|
} else {
|
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
|
|
|
$r .= sprintf(
|
|
|
|
'<span aria-hidden="true">—</span><span class="screen-reader-text">%s</span>',
|
|
|
|
_x( 'Unknown', 'name' )
|
|
|
|
);
|
2017-06-27 02:27:39 +02:00
|
|
|
}
|
2015-05-29 04:41:25 +02:00
|
|
|
break;
|
|
|
|
case 'email':
|
2015-09-15 00:33:25 +02:00
|
|
|
$r .= "<a href='" . esc_url( "mailto:$email" ) . "'>$email</a>";
|
2015-05-29 04:41:25 +02:00
|
|
|
break;
|
|
|
|
case 'role':
|
2015-10-08 23:59:25 +02:00
|
|
|
$r .= esc_html( $roles_list );
|
2015-05-29 04:41:25 +02:00
|
|
|
break;
|
|
|
|
case 'posts':
|
|
|
|
if ( $numposts > 0 ) {
|
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
|
|
|
$r .= sprintf(
|
|
|
|
'<a href="%s" class="edit"><span aria-hidden="true">%s</span><span class="screen-reader-text">%s</span></a>',
|
|
|
|
"edit.php?author={$user_object->ID}",
|
|
|
|
$numposts,
|
|
|
|
sprintf(
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Number of posts. */
|
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
|
|
|
_n( '%s post by this author', '%s posts by this author', $numposts ),
|
|
|
|
number_format_i18n( $numposts )
|
|
|
|
)
|
|
|
|
);
|
2015-05-29 04:41:25 +02:00
|
|
|
} else {
|
|
|
|
$r .= 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/**
|
2016-05-22 20:01:30 +02:00
|
|
|
* Filters the display output of custom columns in the Users list table.
|
2015-05-29 04:41:25 +02:00
|
|
|
*
|
|
|
|
* @since 2.8.0
|
|
|
|
*
|
|
|
|
* @param string $output Custom column output. Default empty.
|
|
|
|
* @param string $column_name Column name.
|
|
|
|
* @param int $user_id ID of the currently-listed user.
|
|
|
|
*/
|
|
|
|
$r .= apply_filters( 'manage_users_custom_column', '', $column_name, $user_object->ID );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( $primary === $column_name ) {
|
|
|
|
$r .= $this->row_actions( $actions );
|
|
|
|
}
|
2017-12-01 00:11:00 +01:00
|
|
|
$r .= '</td>';
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$r .= '</tr>';
|
|
|
|
|
|
|
|
return $r;
|
|
|
|
}
|
2015-05-29 04:41:25 +02:00
|
|
|
|
|
|
|
/**
|
2015-07-13 21:48:25 +02:00
|
|
|
* Gets the name of the default primary column.
|
2015-05-29 04:41:25 +02:00
|
|
|
*
|
|
|
|
* @since 4.3.0
|
|
|
|
*
|
2015-05-31 03:45:27 +02:00
|
|
|
* @return string Name of the default primary column, in this case, 'username'.
|
2015-05-29 04:41:25 +02:00
|
|
|
*/
|
|
|
|
protected function get_default_primary_column_name() {
|
|
|
|
return 'username';
|
|
|
|
}
|
2015-10-08 23:59:25 +02:00
|
|
|
|
|
|
|
/**
|
2021-12-07 13:20:02 +01:00
|
|
|
* Returns an array of translated user role names for a given user object.
|
2015-10-08 23:59:25 +02:00
|
|
|
*
|
|
|
|
* @since 4.4.0
|
|
|
|
*
|
|
|
|
* @param WP_User $user_object The WP_User object.
|
2021-12-07 13:20:02 +01:00
|
|
|
* @return string[] An array of user role names keyed by role.
|
2015-10-08 23:59:25 +02:00
|
|
|
*/
|
|
|
|
protected function get_role_list( $user_object ) {
|
2015-10-10 17:36:26 +02:00
|
|
|
$wp_roles = wp_roles();
|
2015-10-08 23:59:25 +02:00
|
|
|
|
|
|
|
$role_list = array();
|
|
|
|
|
|
|
|
foreach ( $user_object->roles as $role ) {
|
|
|
|
if ( isset( $wp_roles->role_names[ $role ] ) ) {
|
|
|
|
$role_list[ $role ] = translate_user_role( $wp_roles->role_names[ $role ] );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( empty( $role_list ) ) {
|
|
|
|
$role_list['none'] = _x( 'None', 'no user roles' );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-12-07 13:20:02 +01:00
|
|
|
* Filters the returned array of translated role names for a user.
|
2015-10-08 23:59:25 +02:00
|
|
|
*
|
|
|
|
* @since 4.4.0
|
|
|
|
*
|
2021-12-07 13:20:02 +01:00
|
|
|
* @param string[] $role_list An array of translated user role names keyed by role.
|
2018-03-22 21:27:32 +01:00
|
|
|
* @param WP_User $user_object A WP_User object.
|
2015-10-08 23:59:25 +02:00
|
|
|
*/
|
|
|
|
return apply_filters( 'get_role_list', $role_list, $user_object );
|
|
|
|
}
|
|
|
|
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|