public function DefaultsSectionStorage::getStorageId in Drupal 9
Same name and namespace in other branches
- 8 core/modules/layout_builder/src/Plugin/SectionStorage/DefaultsSectionStorage.php \Drupal\layout_builder\Plugin\SectionStorage\DefaultsSectionStorage::getStorageId()
 
Returns an identifier for this storage.
Return value
string The unique identifier for this storage.
Overrides SectionStorageInterface::getStorageId
File
- core/
modules/ layout_builder/ src/ Plugin/ SectionStorage/ DefaultsSectionStorage.php, line 112  
Class
- DefaultsSectionStorage
 - Defines the 'defaults' section storage type.
 
Namespace
Drupal\layout_builder\Plugin\SectionStorageCode
public function getStorageId() {
  return $this
    ->getDisplay()
    ->id();
}