You are here

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

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

Only let users with PHP block visibility permissions set/modify this default plugin.

Overrides views_plugin_argument_default::access

File

plugins/views_plugin_argument_default_php.inc, line 34
Contains the php code argument default plugin.

Class

views_plugin_argument_default_php
Default argument plugin to provide a PHP code block.

Code

function access() {
  return user_access('use PHP for block visibility');
}