You are here

public function WebformSubmissionExporter::getExportOptions in Webform 6.x

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

Get export options.

Return value

array Export options.

Overrides WebformSubmissionExporterInterface::getExportOptions

4 calls to WebformSubmissionExporter::getExportOptions()
WebformSubmissionExporter::getBatchLimit in src/WebformSubmissionExporter.php
Get the number of submissions to be exported with each batch.
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 234

Class

WebformSubmissionExporter
Webform submission exporter.

Namespace

Drupal\webform

Code

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