You are here

public function TableWebformExporter::defaultConfiguration in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformExporter/TableWebformExporter.php \Drupal\webform\Plugin\WebformExporter\TableWebformExporter::defaultConfiguration()

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides WebformExporterBase::defaultConfiguration

1 call to TableWebformExporter::defaultConfiguration()
TestWebformExporter::defaultConfiguration in tests/modules/webform_test_exporter/src/Plugin/WebformExporter/TestWebformExporter.php
Gets default configuration for this plugin.
1 method overrides TableWebformExporter::defaultConfiguration()
TestWebformExporter::defaultConfiguration in tests/modules/webform_test_exporter/src/Plugin/WebformExporter/TestWebformExporter.php
Gets default configuration for this plugin.

File

src/Plugin/WebformExporter/TableWebformExporter.php, line 22

Class

TableWebformExporter
Defines a HTML table exporter.

Namespace

Drupal\webform\Plugin\WebformExporter

Code

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