You are here

public function LayoutDefault::defaultConfiguration in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Layout/LayoutDefault.php \Drupal\Core\Layout\LayoutDefault::defaultConfiguration()
  2. 9 core/lib/Drupal/Core/Layout/LayoutDefault.php \Drupal\Core\Layout\LayoutDefault::defaultConfiguration()
3 methods override LayoutDefault::defaultConfiguration()
LayoutTestPlugin::defaultConfiguration in core/modules/system/tests/modules/layout_test/src/Plugin/Layout/LayoutTestPlugin.php
Gets default configuration for this plugin.
LayoutWithoutLabel::defaultConfiguration in core/modules/layout_builder/tests/modules/layout_builder_test/src/Plugin/Layout/LayoutWithoutLabel.php
Gets default configuration for this plugin.
TestLayoutMainFooter::defaultConfiguration in core/modules/field_layout/tests/modules/field_layout_test/src/Plugin/Layout/TestLayoutMainFooter.php
Gets default configuration for this plugin.

File

core/lib/Drupal/Core/Layout/LayoutDefault.php, line 80

Class

LayoutDefault
Provides a default class for Layout plugins.

Namespace

Drupal\Core\Layout

Code

public function defaultConfiguration() {
  return [
    'label' => '',
  ];
}