ViewsFormMainForm::validateForm

public ViewsFormMainForm::validateForm(array &$form, FormStateInterface $form_state)

Form validation handler.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Overrides FormInterface::validateForm

File

core/modules/views/src/Form/ViewsFormMainForm.php, line 103

Class

ViewsFormMainForm

Namespace

Drupal\views\Form

Code

public function validateForm(array &$form, FormStateInterface $form_state) {
  $view = $form_state->getBuildInfo()['args'][0];

  // Call the validation method on every field handler that has it.
  foreach ($view->field as $field) {
    if (method_exists($field, 'viewsFormValidate')) {
      $field->viewsFormValidate($form, $form_state);
    }
  }

  // Call the validate method on every area handler that has it.
  foreach (array('header', 'footer') as $area) {
    foreach ($view->{$area} as $area_handler) {
      if (method_exists($area_handler, 'viewsFormValidate')) {
        $area_handler->viewsFormValidate($form, $form_state);
      }
    }
  }
}
doc_Drupal
2016-10-29 09:55:22
Comments
Leave a Comment

Please login to continue.