public function LayoutBuilderController::title in Drupal 9
Same name and namespace in other branches
- 8 core/modules/layout_builder/src/Controller/LayoutBuilderController.php \Drupal\layout_builder\Controller\LayoutBuilderController::title()
Provides a title callback.
Parameters
\Drupal\layout_builder\SectionStorageInterface $section_storage: The section storage.
Return value
string The title for the layout page.
File
- core/
modules/ layout_builder/ src/ Controller/ LayoutBuilderController.php, line 27
Class
- LayoutBuilderController
- Defines a controller to provide the Layout Builder admin UI.
Namespace
Drupal\layout_builder\ControllerCode
public function title(SectionStorageInterface $section_storage) {
return $this
->t('Edit layout for %label', [
'%label' => $section_storage
->label(),
]);
}