public function AccountInterface::getUsername in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Session/AccountInterface.php \Drupal\Core\Session\AccountInterface::getUsername()
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.
Deprecated
in Drupal 8.0.0, will be removed before Drupal 9.0.0. Use \Drupal\Core\Session\AccountInterface::getAccountName() or \Drupal\user\UserInterface::getDisplayName() instead.
3 methods override AccountInterface::getUsername()
- AccountProxy::getUsername in core/
lib/ Drupal/ Core/ Session/ AccountProxy.php - Returns the unaltered login name of this account.
- User::getUsername in core/
modules/ user/ src/ Entity/ User.php - Returns the unaltered login name of this account.
- UserSession::getUsername in core/
lib/ Drupal/ Core/ Session/ UserSession.php - Returns the unaltered login name of this account.
File
- core/
lib/ Drupal/ Core/ Session/ AccountInterface.php, line 122 - Contains \Drupal\Core\Session\AccountInterface.
Class
- AccountInterface
- Defines an account interface which represents the current user.
Namespace
Drupal\Core\SessionCode
public function getUsername();