You are here

public function TestWebformExporter::defaultConfiguration in Webform 8.5

Same name and namespace in other branches
  1. 6.x tests/modules/webform_test_exporter/src/Plugin/WebformExporter/TestWebformExporter.php \Drupal\webform_test_exporter\Plugin\WebformExporter\TestWebformExporter::defaultConfiguration()

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides TableWebformExporter::defaultConfiguration

File

tests/modules/webform_test_exporter/src/Plugin/WebformExporter/TestWebformExporter.php, line 23

Class

TestWebformExporter
Defines a test exporter.

Namespace

Drupal\webform_test_exporter\Plugin\WebformExporter

Code

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