You are here

public function OverridesSectionStorage::getDefaultSectionStorage in Drupal 10

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

File

core/modules/layout_builder/src/Plugin/SectionStorage/OverridesSectionStorage.php, line 287

Class

OverridesSectionStorage
Defines the 'overrides' section storage type.

Namespace

Drupal\layout_builder\Plugin\SectionStorage

Code

public function getDefaultSectionStorage() {
  $display = LayoutBuilderEntityViewDisplay::collectRenderDisplay($this
    ->getEntity(), $this
    ->getContextValue('view_mode'));
  return $this->sectionStorageManager
    ->load('defaults', [
    'display' => EntityContext::fromEntity($display),
  ]);
}