class Fieldgroup
Same name and namespace in other branches
- 11.x core/lib/Drupal/Core/Render/Element/Fieldgroup.php \Drupal\Core\Render\Element\Fieldgroup
- 10 core/lib/Drupal/Core/Render/Element/Fieldgroup.php \Drupal\Core\Render\Element\Fieldgroup
- 8.9.x core/lib/Drupal/Core/Render/Element/Fieldgroup.php \Drupal\Core\Render\Element\Fieldgroup
Provides a render element for a group of form elements.
In default rendering, the only difference between a 'fieldgroup' and a 'fieldset' is the CSS class applied to the containing HTML element. Normally use a fieldset.
Plugin annotation
@RenderElement("fieldgroup");
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements \Drupal\Component\Plugin\PluginInspectionInterface, \Drupal\Component\Plugin\DerivativeInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses \Drupal\Core\StringTranslation\StringTranslationTrait, \Drupal\Core\DependencyInjection\DependencySerializationTrait, \Drupal\Core\Messenger\MessengerTrait extends \Drupal\Component\Plugin\PluginBase
- class \Drupal\Core\Render\Element\RenderElement implements \Drupal\Core\Render\Element\ElementInterface extends \Drupal\Core\Plugin\PluginBase
- class \Drupal\Core\Render\Element\Fieldset extends \Drupal\Core\Render\Element\RenderElement
- class \Drupal\Core\Render\Element\Fieldgroup extends \Drupal\Core\Render\Element\Fieldset
- class \Drupal\Core\Render\Element\Fieldset extends \Drupal\Core\Render\Element\RenderElement
- class \Drupal\Core\Render\Element\RenderElement implements \Drupal\Core\Render\Element\ElementInterface extends \Drupal\Core\Plugin\PluginBase
- class \Drupal\Core\Plugin\PluginBase uses \Drupal\Core\StringTranslation\StringTranslationTrait, \Drupal\Core\DependencyInjection\DependencySerializationTrait, \Drupal\Core\Messenger\MessengerTrait extends \Drupal\Component\Plugin\PluginBase
Expanded class hierarchy of Fieldgroup
See also
\Drupal\Core\Render\Element\Fieldset for documentation and usage.
\Drupal\Core\Render\Element\Fieldset
\Drupal\Core\Render\Element\Details
7 string references to 'Fieldgroup'
- CompositeFormElementTrait::preRenderCompositeFormElement in core/
lib/ Drupal/ Core/ Render/ Element/ CompositeFormElementTrait.php - Adds form element theming to an element if its title or description is set.
- Fieldgroup::getInfo in core/
lib/ Drupal/ Core/ Render/ Element/ Fieldgroup.php - FieldStorageConfigEditForm::getCardinalityForm in core/
modules/ field_ui/ src/ Form/ FieldStorageConfigEditForm.php - Builds the cardinality form.
- MultilingualReviewPageTest::getAvailablePaths in core/
modules/ migrate_drupal_ui/ tests/ src/ Functional/ d6/ MultilingualReviewPageTest.php - MultilingualReviewPageTest::getAvailablePaths in core/
modules/ aggregator/ tests/ src/ Functional/ migrate_drupal_ui/ d6/ MultilingualReviewPageTest.php
1 #type use of Fieldgroup
- SiteConfigureForm::buildForm in core/
lib/ Drupal/ Core/ Installer/ Form/ SiteConfigureForm.php
File
-
core/
lib/ Drupal/ Core/ Render/ Element/ Fieldgroup.php, line 19
Namespace
Drupal\Core\Render\ElementView source
class Fieldgroup extends Fieldset {
public function getInfo() {
return [
'#attributes' => [
'class' => [
'fieldgroup',
],
],
] + parent::getInfo();
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.