You are here

public function WebformSubmissionExportImportWebformExporter::defaultConfiguration in Webform 8.5

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

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides WebformExporterBase::defaultConfiguration

File

modules/webform_submission_export_import/src/Plugin/WebformExporter/WebformSubmissionExportImportWebformExporter.php, line 29

Class

WebformSubmissionExportImportWebformExporter
Defines a machine readable CSV export that can be imported back into the current webform.

Namespace

Drupal\webform_submission_export_import\Plugin\WebformExporter

Code

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