You are here

public function WebformExporterBase::getExportFilePath in Webform 8.5

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

Get export file path.

Return value

string A file path.

Overrides WebformExporterInterface::getExportFilePath

File

src/Plugin/WebformExporterBase.php, line 315

Class

WebformExporterBase
Provides a base class for a results exporter.

Namespace

Drupal\webform\Plugin

Code

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