function WizardPluginBase::validateView
Same name in other branches
- 9 core/modules/views/src/Plugin/views/wizard/WizardPluginBase.php \Drupal\views\Plugin\views\wizard\WizardPluginBase::validateView()
- 8.9.x core/modules/views/src/Plugin/views/wizard/WizardPluginBase.php \Drupal\views\Plugin\views\wizard\WizardPluginBase::validateView()
- 11.x 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 1283
Class
- WizardPluginBase
- Base class for Views wizard plugins.
Namespace
Drupal\views\Plugin\views\wizardCode
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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.