You are here

public function WebformSubmissionExporter::getArchiveFilePath in Webform 8.5

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

Get archive file name and path for a webform.

Return value

string Archive file name and path for a form

Overrides WebformSubmissionExporterInterface::getArchiveFilePath

2 calls to WebformSubmissionExporter::getArchiveFilePath()
WebformSubmissionExporter::getArchiveTar in src/WebformSubmissionExporter.php
Construct an instance of archive tar object.
WebformSubmissionExporter::writeHeader in src/WebformSubmissionExporter.php
Write webform results header to export file.

File

src/WebformSubmissionExporter.php, line 1059

Class

WebformSubmissionExporter
Webform submission exporter.

Namespace

Drupal\webform

Code

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