Same filename and directory in other branches
  1. 8.9.x core/modules/layout_builder/src/Plugin/Layout/BlankLayout.php
  2. 9 core/modules/layout_builder/src/Plugin/Layout/BlankLayout.php

Namespace

Drupal\layout_builder\Plugin\Layout

File

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

Namesort descending Description
BlankLayout Provides a layout plugin that produces no output.