interface AccountProxyInterface
Same name in other branches
- 9 core/lib/Drupal/Core/Session/AccountProxyInterface.php \Drupal\Core\Session\AccountProxyInterface
- 10 core/lib/Drupal/Core/Session/AccountProxyInterface.php \Drupal\Core\Session\AccountProxyInterface
- 11.x core/lib/Drupal/Core/Session/AccountProxyInterface.php \Drupal\Core\Session\AccountProxyInterface
Defines an interface for a service which has the current account stored.
It is generally more useful to use \Drupal\Core\Session\AccountInterface unless one specifically needs the proxying features of this interface.
Hierarchy
- interface \Drupal\Core\Session\AccountInterface
- interface \Drupal\Core\Session\AccountProxyInterface extends \Drupal\Core\Session\AccountInterface
Expanded class hierarchy of AccountProxyInterface
All classes that implement AccountProxyInterface
See also
\Drupal\Core\Session\AccountInterface
Related topics
8 files declare their use of AccountProxyInterface
- AuthenticationSubscriber.php in core/
lib/ Drupal/ Core/ EventSubscriber/ AuthenticationSubscriber.php - FormBuilderTest.php in core/
tests/ Drupal/ Tests/ Core/ Form/ FormBuilderTest.php - Contains \Drupal\Tests\Core\Form\FormBuilderTest.
- LinkAccessConstraintValidator.php in core/
modules/ link/ src/ Plugin/ Validation/ Constraint/ LinkAccessConstraintValidator.php - PrivateTempStore.php in core/
lib/ Drupal/ Core/ TempStore/ PrivateTempStore.php - PrivateTempStoreFactory.php in core/
lib/ Drupal/ Core/ TempStore/ PrivateTempStoreFactory.php
File
-
core/
lib/ Drupal/ Core/ Session/ AccountProxyInterface.php, line 15
Namespace
Drupal\Core\SessionView source
interface AccountProxyInterface extends AccountInterface {
/**
* Sets the currently wrapped account.
*
* Setting the current account is highly discouraged! Instead, make sure to
* inject the desired user object into the dependent code directly.
*
* A preferable method of account impersonation is to use
* \Drupal\Core\Session\AccountSwitcherInterface::switchTo() and
* \Drupal\Core\Session\AccountSwitcherInterface::switchBack().
*
* @param \Drupal\Core\Session\AccountInterface $account
* The current account.
*/
public function setAccount(AccountInterface $account);
/**
* Gets the currently wrapped account.
*
* @return \Drupal\Core\Session\AccountInterface
* The current account.
*/
public function getAccount();
/**
* Sets the id of the initial account.
*
* Never use this method, its sole purpose is to work around weird effects
* during mid-request container rebuilds.
*
* @param int $account_id
* The id of the initial account.
*/
public function setInitialAccountId($account_id);
}
Members
Title Sort descending | Deprecated | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|---|
AccountInterface::ANONYMOUS_ROLE | constant | Role ID for anonymous users. | |||
AccountInterface::AUTHENTICATED_ROLE | constant | Role ID for authenticated users. | |||
AccountInterface::getAccountName | public | function | Returns the unaltered login name of this account. | 3 | |
AccountInterface::getDisplayName | public | function | Returns the display name of this account. | 3 | |
AccountInterface::getEmail | public | function | Returns the email address of this account. | 3 | |
AccountInterface::getLastAccessedTime | public | function | The timestamp when the account last accessed the site. | 3 | |
AccountInterface::getPreferredAdminLangcode | public | function | Returns the preferred administrative language code of the account. | 3 | |
AccountInterface::getPreferredLangcode | public | function | Returns the preferred language code of the account. | 3 | |
AccountInterface::getRoles | public | function | Returns a list of roles. | 3 | |
AccountInterface::getTimeZone | public | function | Returns the timezone of this account. | 3 | |
AccountInterface::getUsername | Deprecated | public | function | Returns the unaltered login name of this account. | 3 |
AccountInterface::hasPermission | public | function | Checks whether a user has a certain permission. | 3 | |
AccountInterface::id | public | function | Returns the user ID or 0 for anonymous. | 2 | |
AccountInterface::isAnonymous | public | function | Returns TRUE if the account is anonymous. | 3 | |
AccountInterface::isAuthenticated | public | function | Returns TRUE if the account is authenticated. | 3 | |
AccountProxyInterface::getAccount | public | function | Gets the currently wrapped account. | 1 | |
AccountProxyInterface::setAccount | public | function | Sets the currently wrapped account. | 1 | |
AccountProxyInterface::setInitialAccountId | public | function | Sets the id of the initial account. | 1 |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.