public function ArgumentValidatorPluginBase::access in Views (for Drupal 7) 8.3
Determine if the administrator has the privileges to use this plugin
1 call to ArgumentValidatorPluginBase::access()
- ArgumentValidatorPluginBase::check_access in 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 lib/
Drupal/ views/ Plugin/ views/ argument_validator/ Php.php - Only let users with PHP block visibility permissions set/modify this validate plugin.
File
- lib/
Drupal/ views/ Plugin/ views/ argument_validator/ ArgumentValidatorPluginBase.php, line 60 - 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_validatorCode
public function access() {
return TRUE;
}