You are here

public function SortPluginBase::submitOptionsForm in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/sort/SortPluginBase.php \Drupal\views\Plugin\views\sort\SortPluginBase::submitOptionsForm()

Simple submit handler

Overrides PluginBase::submitOptionsForm

File

core/modules/views/src/Plugin/views/sort/SortPluginBase.php, line 155

Class

SortPluginBase
Base sort handler that has no options and performs a simple sort.

Namespace

Drupal\views\Plugin\views\sort

Code

public function submitOptionsForm(&$form, FormStateInterface $form_state) {

  // Do not store this values.
  $form_state
    ->unsetValue('expose_button');
  $this
    ->sortSubmit($form, $form_state);
  if (!empty($this->options['exposed'])) {
    $this
      ->submitExposeForm($form, $form_state);
  }
}