You are here

public function DelimitedWebformExporter::defaultConfiguration in Webform 6.x

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

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides WebformExporterBase::defaultConfiguration

File

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

Class

DelimitedWebformExporter
Defines a delimited text exporter.

Namespace

Drupal\webform\Plugin\WebformExporter

Code

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