public function None::access in Drupal 9
Same name and namespace in other branches
- 8 core/modules/views/src/Plugin/views/access/None.php \Drupal\views\Plugin\views\access\None::access()
Determine if the current user has access or not.
Parameters
\Drupal\Core\Session\AccountInterface $account: The user who wants to access this view.
Return value
bool Returns whether the user has access to the view.
Overrides AccessPluginBase::access
File
- core/
modules/ views/ src/ Plugin/ views/ access/ None.php, line 31
Class
- None
- Access plugin that provides no access control at all.
Namespace
Drupal\views\Plugin\views\accessCode
public function access(AccountInterface $account) {
// No access control.
return TRUE;
}