function ToolbarLinkBuilder::renderDisplayName

Same name and namespace in other branches
  1. 8.9.x core/modules/user/src/ToolbarLinkBuilder.php \Drupal\user\ToolbarLinkBuilder::renderDisplayName()
  2. 10 core/modules/user/src/ToolbarLinkBuilder.php \Drupal\user\ToolbarLinkBuilder::renderDisplayName()
  3. 11.x core/modules/user/src/ToolbarLinkBuilder.php \Drupal\user\ToolbarLinkBuilder::renderDisplayName()

Lazy builder callback for rendering the username.

Return value

array A renderable array as expected by the renderer service.

File

core/modules/user/src/ToolbarLinkBuilder.php, line 81

Class

ToolbarLinkBuilder
ToolbarLinkBuilder fills out the placeholders generated in <a href="/api/drupal/core%21modules%21user%21user.module/function/user_toolbar/9" title="Implements hook_toolbar()." class="local">user_toolbar</a>().

Namespace

Drupal\user

Code

public function renderDisplayName() {
    return [
        '#markup' => $this->account
            ->getDisplayName(),
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.