You are here

public function HistoryUserTimestamp::buildExposeForm in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/history/src/Plugin/views/filter/HistoryUserTimestamp.php \Drupal\history\Plugin\views\filter\HistoryUserTimestamp::buildExposeForm()

Options form subform for exposed filter options.

Overrides FilterPluginBase::buildExposeForm

See also

buildOptionsForm()

File

core/modules/history/src/Plugin/views/filter/HistoryUserTimestamp.php, line 38

Class

HistoryUserTimestamp
Filter for new content.

Namespace

Drupal\history\Plugin\views\filter

Code

public function buildExposeForm(&$form, FormStateInterface $form_state) {
  parent::buildExposeForm($form, $form_state);

  // @todo There are better ways of excluding required and multiple (object flags)
  unset($form['expose']['required']);
  unset($form['expose']['multiple']);
  unset($form['expose']['remember']);
}