You are here

public function UserController::userTitle in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/user/src/Controller/UserController.php \Drupal\user\Controller\UserController::userTitle()

Route title callback.

Parameters

\Drupal\user\UserInterface $user: The user account.

Return value

string|array The user account name as a render array or an empty string if $user is NULL.

File

core/modules/user/src/Controller/UserController.php, line 307

Class

UserController
Controller routines for user routes.

Namespace

Drupal\user\Controller

Code

public function userTitle(UserInterface $user = NULL) {
  return $user ? [
    '#markup' => $user
      ->getDisplayName(),
    '#allowed_tags' => Xss::getHtmlTagList(),
  ] : '';
}