BlankLayout.php in Drupal 9
Same filename and directory in other branches
Namespace
Drupal\layout_builder\Plugin\LayoutFile
core/modules/layout_builder/src/Plugin/Layout/BlankLayout.phpView source
<?php
namespace Drupal\layout_builder\Plugin\Layout;
use Drupal\Core\Layout\LayoutDefault;
/**
* Provides a layout plugin that produces no output.
*
* @see \Drupal\layout_builder\Field\LayoutSectionItemList::removeSection()
* @see \Drupal\layout_builder\SectionListTrait::addBlankSection()
* @see \Drupal\layout_builder\SectionListTrait::hasBlankSection()
*
* @internal
* This layout plugin is intended for internal use by Layout Builder only.
*
* @Layout(
* id = "layout_builder_blank",
* )
*/
class BlankLayout extends LayoutDefault {
/**
* {@inheritdoc}
*/
public function build(array $regions) {
// Return no output.
return [];
}
}
Classes
Name | Description |
---|---|
BlankLayout | Provides a layout plugin that produces no output. |