You are here

public function WebformSubmissionExporter::getExportFilePath in Webform 8.5

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

Get export file name and path.

Return value

string Export file name and path.

Overrides WebformSubmissionExporterInterface::getExportFilePath

1 call to WebformSubmissionExporter::getExportFilePath()
WebformSubmissionExporter::writeExportToArchive in src/WebformSubmissionExporter.php
Write export file to Archive file.

File

src/WebformSubmissionExporter.php, line 1045

Class

WebformSubmissionExporter
Webform submission exporter.

Namespace

Drupal\webform

Code

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