
| Current Path : /var/www/html/c12park/web/modules/contrib/webform/src/Plugin/WebformElement/ |
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/Plugin/WebformElement/Fieldset.php |
<?php
namespace Drupal\webform\Plugin\WebformElement;
/**
* Provides a 'fieldset' element.
*
* @WebformElement(
* id = "fieldset",
* api = "https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Render!Element!Fieldset.php/class/Fieldset",
* label = @Translation("Fieldset"),
* description = @Translation("Provides an element for a group of form elements."),
* category = @Translation("Containers"),
* )
*/
class Fieldset extends ContainerBase {
/**
* {@inheritdoc}
*/
protected function defineDefaultProperties() {
return [
// Description/Help.
'help' => '',
'help_title' => '',
'help_display' => '',
'description' => '',
'more' => '',
'more_title' => '',
// Title.
'title_display' => '',
'description_display' => '',
] + parent::defineDefaultProperties();
}
/* ************************************************************************ */
/**
* {@inheritdoc}
*/
public function getItemDefaultFormat() {
return 'fieldset';
}
}