You are here

public function LayoutExampleTest::defaultConfiguration in Panels 8.4

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides LayoutDefault::defaultConfiguration

File

tests/modules/panels_test/src/Plugin/Layout/LayoutExampleTest.php, line 39

Class

LayoutExampleTest
The plugin that handles the default layout template.

Namespace

Drupal\panels_test\Plugin\Layout

Code

public function defaultConfiguration() {
  return parent::defaultConfiguration() + [
    'setting_1' => 'Default',
  ];
}