protected function ExposedFormPluginBase::defineOptions

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

1 call to ExposedFormPluginBase::defineOptions()
InputRequired::defineOptions in drupal/core/modules/views/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 drupal/core/modules/views/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

drupal/core/modules/views/lib/Drupal/views/Plugin/views/exposed_form/ExposedFormPluginBase.php, line 32
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_form

Code

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;
}