- Timestamp:
- 09/18/2015 03:57:47 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-ms-users-list-table.php
r34133 r34289 149 149 $users_columns = array( 150 150 'cb' => '<input type="checkbox" />', 151 'id' => __( 'ID' ), 151 152 'username' => __( 'Username' ), 152 153 'name' => __( 'Name' ), … … 198 199 199 200 /** 201 * Handles the ID column output. 202 * 203 * @since 4.4.0 204 * @access public 205 * 206 * @param WP_User $user The current WP_User object. 207 */ 208 public function column_id( $user ) { 209 echo $user->ID; 210 } 211 212 /** 200 213 * Handles the username column output. 201 214 *
Note: See TracChangeset
for help on using the changeset viewer.