Container.php in Webform 8.5
Same filename and directory in other branches
Namespace
Drupal\webform\Plugin\WebformElementFile
src/Plugin/WebformElement/Container.phpView source
<?php
namespace Drupal\webform\Plugin\WebformElement;
/**
* Provides a 'container' element.
*
* @WebformElement(
* id = "container",
* default_key = "container",
* api = "https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Render!Element!Container.php/class/Container",
* label = @Translation("Container"),
* description = @Translation("Provides an element that wraps child elements in a container."),
* category = @Translation("Containers"),
* )
*/
class Container extends ContainerBase {
/**
* {@inheritdoc}
*/
protected function defineDefaultProperties() {
return [
// Attributes.
'attributes' => [],
// Randomize.
'randomize' => FALSE,
// Flexbox.
'flex' => 1,
// Conditional logic.
'states' => [],
'states_clear' => TRUE,
// Format.
'format' => $this
->getItemDefaultFormat(),
'format_html' => '',
'format_text' => '',
'format_attributes' => [],
];
}
}