public function ArgumentValidatorPluginBase::access

Determine if the administrator has the privileges to use this plugin

1 call to ArgumentValidatorPluginBase::access()
ArgumentValidatorPluginBase::checkAccess in drupal/core/modules/views/lib/Drupal/views/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.
1 method overrides ArgumentValidatorPluginBase::access()
Php::access in drupal/core/modules/views/lib/Drupal/views/Plugin/views/argument_validator/Php.php
Only let users with PHP block visibility permissions set/modify this validate plugin.

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php, line 66
Definition of 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;
}