You are here

public function PresetFormBase::validate in Video 8.2

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

modules/video_transcode/src/Form/PresetFormBase.php, line 567

Class

PresetFormBase
Class PresetFormBase.

Namespace

Drupal\video_transcode\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.
}