You are here

public function FieldGroupFormatterBase::getLabel in Field Group 8.3

Same name and namespace in other branches
  1. 8 src/FieldGroupFormatterBase.php \Drupal\field_group\FieldGroupFormatterBase::getLabel()

Get the current label.

Return value

string The current label.

6 calls to FieldGroupFormatterBase::getLabel()
AccordionItem::process in src/Plugin/field_group/FieldGroupFormatter/AccordionItem.php
Allows the field group formatter to manipulate the field group array and attach the formatters elements. The process method is called in the #process part of theme layer, and is currently used for forms. The preRender method is called in the…
Details::process in src/Plugin/field_group/FieldGroupFormatter/Details.php
Allows the field group formatter to manipulate the field group array and attach the formatters elements. The process method is called in the #process part of theme layer, and is currently used for forms. The preRender method is called in the…
Fieldset::process in src/Plugin/field_group/FieldGroupFormatter/Fieldset.php
Allows the field group formatter to manipulate the field group array and attach the formatters elements. The process method is called in the #process part of theme layer, and is currently used for forms. The preRender method is called in the…
HtmlElement::process in src/Plugin/field_group/FieldGroupFormatter/HtmlElement.php
Allows the field group formatter to manipulate the field group array and attach the formatters elements. The process method is called in the #process part of theme layer, and is currently used for forms. The preRender method is called in the…
Tab::process in src/Plugin/field_group/FieldGroupFormatter/Tab.php
Allows the field group formatter to manipulate the field group array and attach the formatters elements. The process method is called in the #process part of theme layer, and is currently used for forms. The preRender method is called in the…

... See full list

File

src/FieldGroupFormatterBase.php, line 79

Class

FieldGroupFormatterBase
Base class for 'Fieldgroup formatter' plugin implementations.

Namespace

Drupal\field_group

Code

public function getLabel() {
  return $this->label;
}