WebformSection.php in Webform 8.5
File
src/Element/WebformSection.php
View source
<?php
namespace Drupal\webform\Element;
use Drupal\Core\Render\Element\RenderElement;
class WebformSection extends RenderElement {
public function getInfo() {
$class = get_class($this);
return [
'#process' => [
[
$class,
'processGroup',
],
[
$class,
'processAjaxForm',
],
],
'#pre_render' => [
[
$class,
'preRenderGroup',
],
],
'#value' => NULL,
'#title_tag' => 'h2',
'#description_display' => 'before',
'#theme_wrappers' => [
'webform_section',
],
];
}
}
Classes
Name |
Description |
WebformSection |
Provides a render element for a section/group of form elements. |