You are here

public function MenuLinkEditForm::validateForm in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/menu_ui/src/Form/MenuLinkEditForm.php \Drupal\menu_ui\Form\MenuLinkEditForm::validateForm()
  2. 10 core/modules/menu_ui/src/Form/MenuLinkEditForm.php \Drupal\menu_ui\Form\MenuLinkEditForm::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/menu_ui/src/Form/MenuLinkEditForm.php, line 84

Class

MenuLinkEditForm
Defines a generic edit form for all menu link plugin types.

Namespace

Drupal\menu_ui\Form

Code

public function validateForm(array &$form, FormStateInterface $form_state) {
  $form['#plugin_form']
    ->validateConfigurationForm($form, $form_state);
}