You are here

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

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

Retrieve the options when this is a new access control plugin

Overrides views_plugin_argument_default::option_definition

File

plugins/views_plugin_argument_default_raw.inc, line 11
Contains the raw value argument default plugin.

Class

views_plugin_argument_default_raw
Default argument plugin to use the raw value from the URL.

Code

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