You are here

function views_plugin_argument_default::access in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 plugins/views_plugin_argument_default.inc \views_plugin_argument_default::access()
  2. 7.3 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 36
Contains the fixed argument default plugin.

Class

views_plugin_argument_default
The fixed argument default handler; also used as the base.

Code

function access() {
  return TRUE;
}