LayoutBuilderController.php

Same filename and directory in other branches
  1. 9 core/modules/layout_builder/src/Controller/LayoutBuilderController.php
  2. 10 core/modules/layout_builder/src/Controller/LayoutBuilderController.php
  3. 11.x core/modules/layout_builder/src/Controller/LayoutBuilderController.php

Namespace

Drupal\layout_builder\Controller

File

core/modules/layout_builder/src/Controller/LayoutBuilderController.php

View source
<?php

namespace Drupal\layout_builder\Controller;

use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\layout_builder\SectionStorageInterface;

/**
 * Defines a controller to provide the Layout Builder admin UI.
 *
 * @internal
 *   Controller classes are internal.
 */
class LayoutBuilderController {
    use StringTranslationTrait;
    
    /**
     * Provides a title callback.
     *
     * @param \Drupal\layout_builder\SectionStorageInterface $section_storage
     *   The section storage.
     *
     * @return string
     *   The title for the layout page.
     */
    public function title(SectionStorageInterface $section_storage) {
        return $this->t('Edit layout for %label', [
            '%label' => $section_storage->label(),
        ]);
    }
    
    /**
     * Renders the Layout UI.
     *
     * @param \Drupal\layout_builder\SectionStorageInterface $section_storage
     *   The section storage.
     *
     * @return array
     *   A render array.
     */
    public function layout(SectionStorageInterface $section_storage) {
        return [
            '#type' => 'layout_builder',
            '#section_storage' => $section_storage,
        ];
    }

}

Classes

Title Deprecated Summary
LayoutBuilderController Defines a controller to provide the Layout Builder admin UI.

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