ActionFormBase::validateForm

public ActionFormBase::validateForm(array &$form, FormStateInterface $form_state)

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/action/src/ActionFormBase.php, line 121

Class

ActionFormBase
Provides a base form for action forms.

Namespace

Drupal\action

Code

1
2
3
4
5
6
7
public function validateForm(array &$form, FormStateInterface $form_state) {
  parent::validateForm($form, $form_state);
 
  if ($this->plugin instanceof PluginFormInterface) {
    $this->plugin->validateConfigurationForm($form, $form_state);
  }
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.