You are here

public function AccountProxy::getAccountName in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Session/AccountProxy.php \Drupal\Core\Session\AccountProxy::getAccountName()

Returns the unaltered login name of this account.

Return value

string An unsanitized plain-text string with the name of this account that is used to log in. Only display this name to admins and to the user who owns this account, and only in the context of the name used to login. For any other display purposes, use \Drupal\Core\Session\AccountInterface::getDisplayName() instead.

Overrides AccountInterface::getAccountName

1 call to AccountProxy::getAccountName()
AccountProxy::getUsername in core/lib/Drupal/Core/Session/AccountProxy.php
Returns the unaltered login name of this account.

File

core/lib/Drupal/Core/Session/AccountProxy.php, line 128
Contains \Drupal\Core\Session\AccountProxy.

Class

AccountProxy
A proxied implementation of AccountInterface.

Namespace

Drupal\Core\Session

Code

public function getAccountName() {
  return $this
    ->getAccount()
    ->getAccountName();
}