1 views_plugin_argument_default_fixed.inc | views_plugin_argument_default_fixed::options_form(&$form, &$form_state) |
Provide the default form for setting options.
Overrides views_plugin_argument_default::options_form
File
- core/
modules/ views/ plugins/ views_plugin_argument_default_fixed.inc, line 20 - Contains the fixed argument default plugin.
Class
- views_plugin_argument_default_fixed
- The fixed argument default handler.
Code
function options_form(&$form, &$form_state) {
parent::options_form($form, $form_state);
$form['argument'] = array(
'#type' => 'textfield',
'#title' => t('Fixed value'),
'#default_value' => $this->options['argument'],
);
}