function InputRequired::defineOptions
Overrides ExposedFormPluginBase::defineOptions
File
- 
              core/
modules/ views/ src/ Plugin/ views/ exposed_form/ InputRequired.php, line 21  
Class
- InputRequired
 - Exposed form plugin that provides an exposed form with required input.
 
Namespace
Drupal\views\Plugin\views\exposed_formCode
protected function defineOptions() {
  $options = parent::defineOptions();
  $options['text_input_required'] = [
    'default' => $this->t('Select any filter and click on Apply to see results'),
  ];
  $options['text_input_required_format'] = [
    'default' => NULL,
  ];
  return $options;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.