LayoutBuilderTestPlugin.php

Same filename and directory in other branches
  1. 8.9.x core/modules/layout_builder/tests/modules/layout_builder_test/src/Plugin/Layout/LayoutBuilderTestPlugin.php
  2. 10 core/modules/layout_builder/tests/modules/layout_builder_test/src/Plugin/Layout/LayoutBuilderTestPlugin.php
  3. 11.x core/modules/layout_builder/tests/modules/layout_builder_test/src/Plugin/Layout/LayoutBuilderTestPlugin.php

Namespace

Drupal\layout_builder_test\Plugin\Layout

File

core/modules/layout_builder/tests/modules/layout_builder_test/src/Plugin/Layout/LayoutBuilderTestPlugin.php

View source
<?php

namespace Drupal\layout_builder_test\Plugin\Layout;

use Drupal\Core\Layout\LayoutDefault;

/**
 * @Layout(
 *   id = "layout_builder_test_plugin",
 *   label = @Translation("Layout Builder Test Plugin"),
 *   regions = {
 *     "main" = {
 *       "label" = @Translation("Main Region")
 *     }
 *   },
 * )
 */
class LayoutBuilderTestPlugin extends LayoutDefault {
    
    /**
     * {@inheritdoc}
     */
    public function build(array $regions) {
        $build = parent::build($regions);
        $build['main']['#attributes']['class'][] = 'go-birds';
        if ($this->inPreview) {
            $build['main']['#attributes']['class'][] = 'go-birds-preview';
        }
        return $build;
    }

}

Classes

Title Deprecated Summary
LayoutBuilderTestPlugin Plugin annotation @Layout( id = "layout_builder_test_plugin", label = @Translation("Layout Builder Test Plugin"), regions = { "main" = { "label" = @Translation("Main Region") } }, )

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