You are here

public function DefaultsSectionStorage::label in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/layout_builder/src/Plugin/SectionStorage/DefaultsSectionStorage.php \Drupal\layout_builder\Plugin\SectionStorage\DefaultsSectionStorage::label()
  2. 10 core/modules/layout_builder/src/Plugin/SectionStorage/DefaultsSectionStorage.php \Drupal\layout_builder\Plugin\SectionStorage\DefaultsSectionStorage::label()

Gets the label for the object using the sections.

Return value

string The label, or NULL if there is no label defined.

Overrides SectionStorageInterface::label

File

core/modules/layout_builder/src/Plugin/SectionStorage/DefaultsSectionStorage.php, line 335

Class

DefaultsSectionStorage
Defines the 'defaults' section storage type.

Namespace

Drupal\layout_builder\Plugin\SectionStorage

Code

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