You are here

public function WebformSubmissionExportImportWebformExporter::getFileExtension in Webform 6.x

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

Get export file extension.

Return value

string A file extension.

Overrides WebformExporterBase::getFileExtension

File

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

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 getFileExtension() {
  return 'csv';
}