You are here

public function TestContextAwareLayout::build in Drupal 10

Same name and namespace in other branches
  1. 9 core/modules/layout_builder/tests/modules/layout_builder_test/src/Plugin/Layout/TestContextAwareLayout.php \Drupal\layout_builder_test\Plugin\Layout\TestContextAwareLayout::build()

Build a render array for layout with regions.

Parameters

array $regions: An associative array keyed by region name, containing render arrays representing the content that should be placed in each region.

Return value

array Render array for the layout with regions.

Overrides LayoutDefault::build

File

core/modules/layout_builder/tests/modules/layout_builder_test/src/Plugin/Layout/TestContextAwareLayout.php, line 26

Class

TestContextAwareLayout
Plugin annotation @Layout( id = "layout_builder_test_context_aware", label = @Translation("Layout Builder Test: Context Aware"), regions = { "main" = { "label" = @Translation("Main Region") } }, context_definitions = { …

Namespace

Drupal\layout_builder_test\Plugin\Layout

Code

public function build(array $regions) {
  $build = parent::build($regions);
  $build['main']['#attributes']['class'][] = 'user--' . $this
    ->getContextValue('user')
    ->getAccountName();
  return $build;
}