You are here

public function ArgumentValidatorPluginBase::access in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/views/src/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php \Drupal\views\Plugin\views\argument_validator\ArgumentValidatorPluginBase::access()

Determine if the administrator has the privileges to use this plugin

1 call to ArgumentValidatorPluginBase::access()
ArgumentValidatorPluginBase::checkAccess in core/modules/views/src/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php
If we don't have access to the form but are showing it anyway, ensure that the form is safe and cannot be changed from user input.

File

core/modules/views/src/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php, line 82
Contains \Drupal\views\Plugin\views\argument_validator\ArgumentValidatorPluginBase.

Class

ArgumentValidatorPluginBase
Base argument validator plugin to provide basic functionality.

Namespace

Drupal\views\Plugin\views\argument_validator

Code

public function access() {
  return TRUE;
}