
| Current Path : /var/www/html/12park/web/modules/contrib/webform/src/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/12park/web/modules/contrib/webform/src/WebformEntityElementsValidatorInterface.php |
<?php
namespace Drupal\webform;
/**
* Defines an interface for elements validator.
*/
interface WebformEntityElementsValidatorInterface {
/**
* Validate webform elements.
*
* @param \Drupal\webform\WebformInterface $webform
* A webform.
* @param array $options
* An array of validation rules to check.
*
* @return array|null
* An array of error messages or NULL if the elements are valid.
*/
public function validate(WebformInterface $webform, array $options = []);
}