You are here

public function YamlFormSubmissionExporter::getArchiveFilePath in YAML Form 8

Get archive file name and path for a form.

Return value

string Archive file name and path for a form

Overrides YamlFormSubmissionExporterInterface::getArchiveFilePath

3 calls to YamlFormSubmissionExporter::getArchiveFilePath()
YamlFormSubmissionExporter::writeExportToArchive in src/YamlFormSubmissionExporter.php
Write export file to Archive file.
YamlFormSubmissionExporter::writeHeader in src/YamlFormSubmissionExporter.php
Write form results header to export file.
YamlFormSubmissionExporter::writeRecords in src/YamlFormSubmissionExporter.php
Write form results header to export file.

File

src/YamlFormSubmissionExporter.php, line 875

Class

YamlFormSubmissionExporter
Form submission exporter.

Namespace

Drupal\yamlform

Code

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