public function TestLayoutMainFooter::defaultConfiguration in Drupal 10
Same name and namespace in other branches
- 8 core/modules/field_layout/tests/modules/field_layout_test/src/Plugin/Layout/TestLayoutMainFooter.php \Drupal\field_layout_test\Plugin\Layout\TestLayoutMainFooter::defaultConfiguration()
- 9 core/modules/field_layout/tests/modules/field_layout_test/src/Plugin/Layout/TestLayoutMainFooter.php \Drupal\field_layout_test\Plugin\Layout\TestLayoutMainFooter::defaultConfiguration()
Gets default configuration for this plugin.
Return value
array An associative array with the default configuration.
Overrides LayoutDefault::defaultConfiguration
File
- core/
modules/ field_layout/ tests/ modules/ field_layout_test/ src/ Plugin/ Layout/ TestLayoutMainFooter.php, line 35
Class
- TestLayoutMainFooter
- Provides an annotated layout plugin for field_layout tests.
Namespace
Drupal\field_layout_test\Plugin\LayoutCode
public function defaultConfiguration() {
return [
'setting_1' => 'Default',
];
}