
| Current Path : /var/www/html/c12park/web/modules/contrib/webform/src/Element/ |
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/c12park/web/modules/contrib/webform/src/Element/WebformCompositeInterface.php |
<?php
namespace Drupal\webform\Element;
/**
* Defines an interface for webform composite element.
*/
interface WebformCompositeInterface {
/**
* Get a renderable array of webform elements.
*
* @param array $element
* A render array for the current element.
*
* @return array
* A renderable array of webform elements, containing the base properties
* for the composite's webform elements.
*/
public static function getCompositeElements(array $element);
/**
* Initialize a composite's elements.
*
* @param array $element
* A render array for the current element.
*
* @return array
* A renderable array of webform elements, containing the base properties
* for the composite's webform elements.
*/
public static function initializeCompositeElements(array &$element);
}