public function views_plugin_argument_default::access in Views (for Drupal 7) 7.3
Same name and namespace in other branches
- 6.3 plugins/views_plugin_argument_default.inc \views_plugin_argument_default::access()
- 6.2 plugins/views_plugin_argument_default.inc \views_plugin_argument_default::access()
Determine if the administrator has the privileges to use this plugin.
1 call to views_plugin_argument_default::access()
- views_plugin_argument_default::check_access in plugins/
views_plugin_argument_default.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_default::access()
- views_plugin_argument_default_php::access in plugins/
views_plugin_argument_default_php.inc - Only let users with PHP block visibility permissions set/modify this default plugin.
File
- plugins/
views_plugin_argument_default.inc, line 69 - Definition of views_plugin_argument_default.
Class
- views_plugin_argument_default
- The fixed argument default handler; also used as the base.
Code
public function access() {
return TRUE;
}