You are here

public function views_plugin_argument_validate::access in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 plugins/views_plugin_argument_validate.inc \views_plugin_argument_validate::access()
  2. 6.2 plugins/views_plugin_argument_validate.inc \views_plugin_argument_validate::access()

Determine if the administrator has the privileges to use this plugin.

1 call to views_plugin_argument_validate::access()
views_plugin_argument_validate::check_access in plugins/views_plugin_argument_validate.inc
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 views_plugin_argument_validate::access()
views_plugin_argument_validate_php::access in plugins/views_plugin_argument_validate_php.inc
Only let users with PHP block visibility permissions set/modify this validate plugin.

File

plugins/views_plugin_argument_validate.inc, line 71
Definition of views_plugin_argument_validate.

Class

views_plugin_argument_validate
Base argument validator plugin to provide basic functionality.

Code

public function access() {
  return TRUE;
}