You are here

public function YamlFormExporterBase::getExportFilePath in YAML Form 8

Get export file path.

Return value

string A file path.

Overrides YamlFormExporterInterface::getExportFilePath

File

src/YamlFormExporterBase.php, line 281

Class

YamlFormExporterBase
Provides a base class for a results exporter.

Namespace

Drupal\yamlform

Code

public function getExportFilePath() {
  return $this
    ->getFileTempDirectory() . '/' . $this
    ->getExportFileName();
}