
| 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/WebformEntityConditionsManagerInterface.php |
<?php
namespace Drupal\webform;
/**
* Provides an interface defining a webform conditions (#states) manager.
*/
interface WebformEntityConditionsManagerInterface {
/**
* Convert a webform's #states to a human read-able format.
*
* @param \Drupal\webform\WebformInterface $webform
* A webform.
* @param array $states
* An element's #states array.
* @param array $options
* An associative array of configuration options.
*
* @return array
* A renderable array containing the webform's #states displayed in
* a human read-able format.
*/
public function toText(WebformInterface $webform, array $states, array $options = []);
}