BlankLayout.php
Same filename in other branches
Namespace
Drupal\layout_builder\Plugin\LayoutFile
-
core/
modules/ layout_builder/ src/ Plugin/ Layout/ BlankLayout.php
View 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
Title | Deprecated | Summary |
---|---|---|
BlankLayout | Provides a layout plugin that produces no output. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.