public function ViewEditForm::validateForm in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views_ui/src/ViewEditForm.php \Drupal\views_ui\ViewEditForm::validateForm()
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 FormBase::validateForm
File
- core/
modules/ views_ui/ src/ ViewEditForm.php, line 241 - Contains \Drupal\views_ui\ViewEditForm.
Class
- ViewEditForm
- Form controller for the Views edit form.
Namespace
Drupal\views_uiCode
public function validateForm(array &$form, FormStateInterface $form_state) {
parent::validateForm($form, $form_state);
$view = $this->entity;
if ($view
->isLocked()) {
$form_state
->setErrorByName('', $this
->t('Changes cannot be made to a locked view.'));
}
foreach ($view
->getExecutable()
->validate() as $display_errors) {
foreach ($display_errors as $error) {
$form_state
->setErrorByName('', $error);
}
}
}