wppaste
WordPress

WP_MS_Users_List_Table::column_username( WP_User $user )

Since
4.3.0
Source
wp-admin/includes/class-wp-ms-users-list-table.php:268
Handles the username column output.

Parameters

$userWP_User
The current WP_User object.

Uses · 8

Source

	public function column_username( $user ) {		$super_admins = get_super_admins();		$avatar       = get_avatar( $user->user_email, 32 ); 		echo $avatar; 		if ( current_user_can( 'edit_user', $user->ID ) ) {			$edit_link = esc_url( add_query_arg( 'wp_http_referer', urlencode( wp_unslash( $_SERVER['REQUEST_URI'] ) ), get_edit_user_link( $user->ID ) ) );			$edit      = "<a href=\"{$edit_link}\">{$user->user_login}</a>";		} else {			$edit = $user->user_login;		} 		?>		<strong>			<?php			echo $edit; 			if ( in_array( $user->user_login, $super_admins, true ) ) {				echo ' &mdash; ' . __( 'Super Admin' );			}			?>		</strong>		<?php	}

History

Introduced in 4.3.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 6.9.7 tag, from src/wp-admin/includes/class-wp-ms-users-list-table.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.