function ChangeUserRoleBase::access
Same name in other branches
- 9 core/modules/user/src/Plugin/Action/ChangeUserRoleBase.php \Drupal\user\Plugin\Action\ChangeUserRoleBase::access()
- 10 core/modules/user/src/Plugin/Action/ChangeUserRoleBase.php \Drupal\user\Plugin\Action\ChangeUserRoleBase::access()
- 11.x core/modules/user/src/Plugin/Action/ChangeUserRoleBase.php \Drupal\user\Plugin\Action\ChangeUserRoleBase::access()
Overrides ActionInterface::access
File
-
core/
modules/ user/ src/ Plugin/ Action/ ChangeUserRoleBase.php, line 94
Class
- ChangeUserRoleBase
- Provides a base class for operations to change a user's role.
Namespace
Drupal\user\Plugin\ActionCode
public function access($object, AccountInterface $account = NULL, $return_as_object = FALSE) {
/** @var \Drupal\user\UserInterface $object */
$access = $object->access('update', $account, TRUE)
->andIf($object->roles
->access('edit', $account, TRUE));
return $return_as_object ? $access : $access->isAllowed();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.