function Section::getLayout

Same name and namespace in other branches
  1. 9 core/modules/layout_builder/src/Section.php \Drupal\layout_builder\Section::getLayout()
  2. 8.9.x core/modules/layout_builder/src/Section.php \Drupal\layout_builder\Section::getLayout()
  3. 10 core/modules/layout_builder/src/Section.php \Drupal\layout_builder\Section::getLayout()

Gets the layout plugin for this section.

Parameters

\Drupal\Core\Plugin\Context\ContextInterface[] $contexts: An array of available contexts.

Return value

\Drupal\Core\Layout\LayoutInterface The layout plugin.

1 call to Section::getLayout()
Section::toRenderArray in core/modules/layout_builder/src/Section.php
Returns the renderable array for this section.

File

core/modules/layout_builder/src/Section.php, line 115

Class

Section
Provides a domain object for layout sections.

Namespace

Drupal\layout_builder

Code

public function getLayout(array $contexts = []) {
    $layout = $this->layoutPluginManager()
        ->createInstance($this->getLayoutId(), $this->layoutSettings);
    if ($contexts) {
        $this->contextHandler()
            ->applyContextMapping($layout, $contexts);
    }
    return $layout;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.