You are here

public function AuthorPaneFormBase::validate in Author Pane 8.3

Overrides Drupal\Core\Entity\EntityFormController::validate().

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: An associative array containing the current state of the form.

File

src/Form/AuthorPaneFormBase.php, line 157
Contains \Drupal\author_pane\Form\AuthorPaneFormBase.

Class

AuthorPaneFormBase
Class AuthorPaneFormBase.

Namespace

Drupal\author_pane\Form

Code

public function validate(array $form, FormStateInterface $form_state) {
  parent::validate($form, $form_state);

  // Add code here to validate your config entity's form elements.
  // Nothing to do here.
}