You are here

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

Same name and namespace in other branches
  1. 7.3 plugins/views_plugin_argument_default_fixed.inc \views_plugin_argument_default_fixed::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_fixed.inc, line 11
Contains the fixed argument default plugin.

Class

views_plugin_argument_default_fixed
The fixed argument default handler.

Code

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