You are here

public function WebformSubmissionExporter::getExportOptions in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/WebformSubmissionExporter.php \Drupal\webform\WebformSubmissionExporter::getExportOptions()

Get export options.

Return value

array Export options.

Overrides WebformSubmissionExporterInterface::getExportOptions

3 calls to WebformSubmissionExporter::getExportOptions()
WebformSubmissionExporter::getQuery in src/WebformSubmissionExporter.php
Get webform submission query for specified YAMl webform and export options.
WebformSubmissionExporter::isArchive in src/WebformSubmissionExporter.php
Determine if an archive is being generated.
WebformSubmissionExporter::writeRecords in src/WebformSubmissionExporter.php
Write webform results header to export file.

File

src/WebformSubmissionExporter.php, line 231

Class

WebformSubmissionExporter
Webform submission exporter.

Namespace

Drupal\webform

Code

public function getExportOptions() {
  return $this
    ->getExporter()
    ->getConfiguration();
}