You are here

protected function Search::valueForm in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/search/src/Plugin/views/filter/Search.php \Drupal\search\Plugin\views\filter\Search::valueForm()

Options form subform for setting options.

This should be overridden by all child classes and it must define $form['value']

Overrides FilterPluginBase::valueForm

See also

buildOptionsForm()

File

core/modules/search/src/Plugin/views/filter/Search.php, line 89
Contains \Drupal\search\Plugin\views\filter\Search.

Class

Search
Filter handler for search keywords.

Namespace

Drupal\search\Plugin\views\filter

Code

protected function valueForm(&$form, FormStateInterface $form_state) {
  $form['value'] = array(
    '#type' => 'textfield',
    '#size' => 15,
    '#default_value' => $this->value,
    '#attributes' => array(
      'title' => $this
        ->t('Search keywords'),
    ),
    '#title' => !$form_state
      ->get('exposed') ? $this
      ->t('Keywords') : '',
  );
}