1 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

core/modules/views/plugins/views_plugin_argument_default_raw.inc, line 13
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' => '');
  $options['use_alias'] = array('default' => FALSE, 'bool' => TRUE);

  return $options;
}