You are here

TestLayoutMainFooter.php in Drupal 10

File

core/modules/field_layout/tests/modules/field_layout_test/src/Plugin/Layout/TestLayoutMainFooter.php
View source
<?php

namespace Drupal\field_layout_test\Plugin\Layout;

use Drupal\Core\Layout\LayoutDefault;

/**
 * Provides an annotated layout plugin for field_layout tests.
 *
 * @Layout(
 *   id = "test_layout_main_and_footer",
 *   label = @Translation("Test plugin: Main and Footer"),
 *   category = @Translation("Layout test"),
 *   description = @Translation("Test layout"),
 *   regions = {
 *     "main" = {
 *       "label" = @Translation("Main Region")
 *     },
 *     "footer" = {
 *       "label" = @Translation("Footer Region")
 *     }
 *   },
 *   config_dependencies = {
 *     "module" = {
 *       "dependency_from_annotation",
 *     },
 *   },
 * )
 */
class TestLayoutMainFooter extends LayoutDefault {

  /**
   * {@inheritdoc}
   */
  public function defaultConfiguration() {
    return [
      'setting_1' => 'Default',
    ];
  }

  /**
   * {@inheritdoc}
   */
  public function calculateDependencies() {
    $dependencies = parent::calculateDependencies();
    $dependencies['module'][] = 'dependency_from_calculateDependencies';
    return $dependencies;
  }

}

Classes

Namesort descending Description
TestLayoutMainFooter Provides an annotated layout plugin for field_layout tests.