You are here

public function FormStateDecoratorBase::getGroups in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Form/FormStateDecoratorBase.php \Drupal\Core\Form\FormStateDecoratorBase::getGroups()

Returns references to details elements to render them within vertical tabs.

Return value

array

Overrides FormStateInterface::getGroups

File

core/lib/Drupal/Core/Form/FormStateDecoratorBase.php, line 114

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\Core\Form

Code

public function &getGroups() {
  return $this->decoratedFormState
    ->getGroups();
}