protected function ExposedFormPluginBase::defineOptions in Views (for Drupal 7) 8.3
Information about options for all kinds of purposes will be held here. @code 'option_name' => array(
- 'default' => default value,
- 'translatable' => (optional) TRUE/FALSE (wrap in t() on export if true),
- 'contains' => (optional) array of items this contains, with its own defaults, etc. If contains is set, the default will be ignored and assumed to be array().
- 'bool' => (optional) TRUE/FALSE Is the value a boolean value. This will change the export format to TRUE/FALSE instead of 1/0.
),
Return value
array Returns the options of this handler/plugin.
Overrides PluginBase::defineOptions
2 calls to ExposedFormPluginBase::defineOptions()
- ExposedFormPluginBase::init in lib/
Drupal/ views/ Plugin/ views/ exposed_form/ ExposedFormPluginBase.php - Initialize the plugin.
- InputRequired::defineOptions in lib/
Drupal/ views/ Plugin/ views/ exposed_form/ InputRequired.php - Information about options for all kinds of purposes will be held here. @code 'option_name' => array(
1 method overrides ExposedFormPluginBase::defineOptions()
- InputRequired::defineOptions in lib/
Drupal/ views/ Plugin/ views/ exposed_form/ InputRequired.php - Information about options for all kinds of purposes will be held here. @code 'option_name' => array(
File
- lib/
Drupal/ views/ Plugin/ views/ exposed_form/ ExposedFormPluginBase.php, line 47 - Definition of Drupal\views\Plugin\views\exposed_form\ExposedFormPluginBase.
Class
- ExposedFormPluginBase
- The base plugin to handle exposed filter forms.
Namespace
Drupal\views\Plugin\views\exposed_formCode
protected function defineOptions() {
$options = parent::defineOptions();
$options['submit_button'] = array(
'default' => 'Apply',
'translatable' => TRUE,
);
$options['reset_button'] = array(
'default' => FALSE,
'bool' => TRUE,
);
$options['reset_button_label'] = array(
'default' => 'Reset',
'translatable' => TRUE,
);
$options['exposed_sorts_label'] = array(
'default' => 'Sort by',
'translatable' => TRUE,
);
$options['expose_sort_order'] = array(
'default' => TRUE,
'bool' => TRUE,
);
$options['sort_asc_label'] = array(
'default' => 'Asc',
'translatable' => TRUE,
);
$options['sort_desc_label'] = array(
'default' => 'Desc',
'translatable' => TRUE,
);
return $options;
}