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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.