You are here

public function ExposedFormPluginBase::exposedFormValidate in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/views/src/Plugin/views/exposed_form/ExposedFormPluginBase.php \Drupal\views\Plugin\views\exposed_form\ExposedFormPluginBase::exposedFormValidate()

File

core/modules/views/src/Plugin/views/exposed_form/ExposedFormPluginBase.php, line 281
Contains \Drupal\views\Plugin\views\exposed_form\ExposedFormPluginBase.

Class

ExposedFormPluginBase
Base class for Views exposed filter form plugins.

Namespace

Drupal\views\Plugin\views\exposed_form

Code

public function exposedFormValidate(&$form, FormStateInterface $form_state) {
  if ($pager_plugin = $form_state
    ->get('pager_plugin')) {
    $pager_plugin
      ->exposedFormValidate($form, $form_state);
  }
}