Added another front page space for Yaffs info. Added roave security for composer.
[yaffs-website] / web / core / lib / Drupal / Core / Render / Element / Fieldgroup.php
1 <?php
2
3 namespace Drupal\Core\Render\Element;
4
5 /**
6  * Provides a render element for a group of form elements.
7  *
8  * In default rendering, the only difference between a 'fieldgroup' and a
9  * 'fieldset' is the CSS class applied to the containing HTML element. Normally
10  * use a fieldset.
11  *
12  * @see \Drupal\Core\Render\Element\Fieldset for documentation and usage.
13  *
14  * @see \Drupal\Core\Render\Element\Fieldset
15  * @see \Drupal\Core\Render\Element\Details
16  *
17  * @RenderElement("fieldgroup")
18  */
19 class Fieldgroup extends Fieldset {
20
21   public function getInfo() {
22     return [
23       '#attributes' => ['class' => ['fieldgroup']],
24     ] + parent::getInfo();
25   }
26
27 }