You are here

public function WebformExporterBase::getArchiveFileName in Webform 6.x

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

Get archive file name for a webform.

Return value

string Archive file name.

Overrides WebformExporterInterface::getArchiveFileName

1 call to WebformExporterBase::getArchiveFileName()
WebformExporterBase::getArchiveFilePath in src/Plugin/WebformExporterBase.php
Get archive file name and path for a webform.

File

src/Plugin/WebformExporterBase.php, line 283

Class

WebformExporterBase
Provides a base class for a results exporter.

Namespace

Drupal\webform\Plugin

Code

public function getArchiveFileName() {
  return $this
    ->getBaseFileName() . '.' . $this
    ->getArchiveFileExtension();
}