You are here

public function WizardPluginBase::validateView in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/wizard/WizardPluginBase.php \Drupal\views\Plugin\views\wizard\WizardPluginBase::validateView()
  2. 9 core/modules/views/src/Plugin/views/wizard/WizardPluginBase.php \Drupal\views\Plugin\views\wizard\WizardPluginBase::validateView()

Implements Drupal\views\Plugin\views\wizard\WizardInterface::validate().

Instantiates the view from the form submission and validates its values.

Overrides WizardInterface::validateView

File

core/modules/views/src/Plugin/views/wizard/WizardPluginBase.php, line 1280

Class

WizardPluginBase
Base class for Views wizard plugins.

Namespace

Drupal\views\Plugin\views\wizard

Code

public function validateView(array $form, FormStateInterface $form_state) {
  $view = $this
    ->instantiateView($form, $form_state);
  $errors = $view
    ->getExecutable()
    ->validate();
  if (empty($errors)) {
    $this
      ->setValidatedView($form, $form_state, $view);
  }
  return $errors;
}