You are here

function views_plugin_access_perm::option_definition in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 7.3 plugins/views_plugin_access_perm.inc \views_plugin_access_perm::option_definition()

Retrieve the options when this is a new access control plugin

Overrides views_plugin_access::option_definition

File

plugins/views_plugin_access_perm.inc, line 20

Class

views_plugin_access_perm
Access plugin that provides permission-based access control.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['perm'] = array(
    'default' => 'access content',
  );
  return $options;
}