public function YamlFormExporterBase::getArchiveFileName in YAML Form 8
Get archive file name for a form.
Return value
string Archive file name.
Overrides YamlFormExporterInterface::getArchiveFileName
1 call to YamlFormExporterBase::getArchiveFileName()
- YamlFormExporterBase::getArchiveFilePath in src/
YamlFormExporterBase.php - Get archive file name and path for a form.
File
- src/
YamlFormExporterBase.php, line 295
Class
- YamlFormExporterBase
- Provides a base class for a results exporter.
Namespace
Drupal\yamlformCode
public function getArchiveFileName() {
return $this
->getBaseFileName() . '.tar.gz';
}