protected function LayoutBuilder::prepareLayout in Drupal 10
Same name and namespace in other branches
- 8 core/modules/layout_builder/src/Element/LayoutBuilder.php \Drupal\layout_builder\Element\LayoutBuilder::prepareLayout()
- 9 core/modules/layout_builder/src/Element/LayoutBuilder.php \Drupal\layout_builder\Element\LayoutBuilder::prepareLayout()
Prepares a layout for use in the UI.
Parameters
\Drupal\layout_builder\SectionStorageInterface $section_storage: The section storage.
1 call to LayoutBuilder::prepareLayout()
- LayoutBuilder::layout in core/
modules/ layout_builder/ src/ Element/ LayoutBuilder.php - Renders the Layout UI.
File
- core/
modules/ layout_builder/ src/ Element/ LayoutBuilder.php, line 136
Class
- LayoutBuilder
- Defines a render element for building the Layout Builder UI.
Namespace
Drupal\layout_builder\ElementCode
protected function prepareLayout(SectionStorageInterface $section_storage) {
$event = new PrepareLayoutEvent($section_storage);
$this->eventDispatcher
->dispatch($event, LayoutBuilderEvents::PREPARE_LAYOUT);
}