public function WebformHandlerInterface::validateForm in Webform 6.x
Same name and namespace in other branches
- 8.5 src/Plugin/WebformHandlerInterface.php \Drupal\webform\Plugin\WebformHandlerInterface::validateForm()
Validate webform submission form.
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
\Drupal\webform\WebformSubmissionInterface $webform_submission: A webform submission.
1 method overrides WebformHandlerInterface::validateForm()
- WebformHandlerBase::validateForm in src/
Plugin/ WebformHandlerBase.php - Validate webform submission form.
File
- src/
Plugin/ WebformHandlerInterface.php, line 407
Class
- WebformHandlerInterface
- Defines the interface for webform handlers.
Namespace
Drupal\webform\PluginCode
public function validateForm(array &$form, FormStateInterface $form_state, WebformSubmissionInterface $webform_submission);