Network Admin: Include IDs for users and sites on their respective views.
Props danielbachhuber, wonderboymusic. Fixes #18661. Built from https://develop.svn.wordpress.org/trunk@34289 git-svn-id: http://core.svn.wordpress.org/trunk@34253 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
33a1c0fc16
commit
b92955b427
|
@ -200,6 +200,7 @@ class WP_MS_Sites_List_Table extends WP_List_Table {
|
||||||
public function get_columns() {
|
public function get_columns() {
|
||||||
$sites_columns = array(
|
$sites_columns = array(
|
||||||
'cb' => '<input type="checkbox" />',
|
'cb' => '<input type="checkbox" />',
|
||||||
|
'id' => __( 'ID' ),
|
||||||
'blogname' => __( 'URL' ),
|
'blogname' => __( 'URL' ),
|
||||||
'lastupdated' => __( 'Last Updated' ),
|
'lastupdated' => __( 'Last Updated' ),
|
||||||
'registered' => _x( 'Registered', 'site' ),
|
'registered' => _x( 'Registered', 'site' ),
|
||||||
|
@ -251,6 +252,18 @@ class WP_MS_Sites_List_Table extends WP_List_Table {
|
||||||
<?php endif;
|
<?php endif;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handles the ID column output.
|
||||||
|
*
|
||||||
|
* @since 4.4.0
|
||||||
|
* @access public
|
||||||
|
*
|
||||||
|
* @param array $blog Current site.
|
||||||
|
*/
|
||||||
|
public function column_id( $blog ) {
|
||||||
|
echo $blog['blog_id'];
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handles the blogname column output.
|
* Handles the blogname column output.
|
||||||
*
|
*
|
||||||
|
|
|
@ -148,6 +148,7 @@ class WP_MS_Users_List_Table extends WP_List_Table {
|
||||||
public function get_columns() {
|
public function get_columns() {
|
||||||
$users_columns = array(
|
$users_columns = array(
|
||||||
'cb' => '<input type="checkbox" />',
|
'cb' => '<input type="checkbox" />',
|
||||||
|
'id' => __( 'ID' ),
|
||||||
'username' => __( 'Username' ),
|
'username' => __( 'Username' ),
|
||||||
'name' => __( 'Name' ),
|
'name' => __( 'Name' ),
|
||||||
'email' => __( 'Email' ),
|
'email' => __( 'Email' ),
|
||||||
|
@ -196,6 +197,18 @@ class WP_MS_Users_List_Table extends WP_List_Table {
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handles the ID column output.
|
||||||
|
*
|
||||||
|
* @since 4.4.0
|
||||||
|
* @access public
|
||||||
|
*
|
||||||
|
* @param WP_User $user The current WP_User object.
|
||||||
|
*/
|
||||||
|
public function column_id( $user ) {
|
||||||
|
echo $user->ID;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handles the username column output.
|
* Handles the username column output.
|
||||||
*
|
*
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-alpha-34288';
|
$wp_version = '4.4-alpha-34289';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue