views_plugin_argument_default_fixed.inc
Same filename in other branches
Definition of views_plugin_argument_default_fixed.
File
View source
<?php
/**
* @file
* Definition of views_plugin_argument_default_fixed.
*/
/**
* The fixed argument default handler.
*
* @ingroup views_argument_default_plugins
*/
class views_plugin_argument_default_fixed extends views_plugin_argument_default {
/**
* {@inheritdoc}
*/
public function option_definition() {
$options = parent::option_definition();
$options['argument'] = array(
'default' => '',
);
return $options;
}
/**
* {@inheritdoc}
*/
public 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'],
);
}
/**
* Return the default argument.
*/
public function get_argument() {
return $this->options['argument'];
}
/**
* {@inheritdoc}
*/
public function convert_options(&$options) {
if (!isset($options['argument']) && isset($this->argument->options['default_argument_fixed'])) {
$options['argument'] = $this->argument->options['default_argument_fixed'];
}
}
}
/**
* @}
*/
Classes
Title | Deprecated | Summary |
---|---|---|
views_plugin_argument_default_fixed | The fixed argument default handler. |