You are here

public function EREFNodeTitles::submitExtraOptionsForm in Entity Reference Exposed Filters 8

Perform any necessary changes to the form values prior to storage. There is no need for this function to actually store the data.

Overrides HandlerBase::submitExtraOptionsForm

File

src/Plugin/views/filter/EREFNodeTitles.php, line 244

Class

EREFNodeTitles
Filters by given list of related content title options.

Namespace

Drupal\entity_reference_exposed_filters\Plugin\views\filter

Code

public function submitExtraOptionsForm($form, FormStateInterface $form_state) {

  // Define and regenerate the options if we change the sort.
  $this
    ->defineOptions();
  $this
    ->generateOptions();
}