public function YamlFormExporterBase::getExportFileName in YAML Form 8
Get export file name.
Return value
string A file name.
Overrides YamlFormExporterInterface::getExportFileName
1 call to YamlFormExporterBase::getExportFileName()
- YamlFormExporterBase::getExportFilePath in src/
YamlFormExporterBase.php - Get export file path.
File
- src/
YamlFormExporterBase.php, line 274
Class
- YamlFormExporterBase
- Provides a base class for a results exporter.
Namespace
Drupal\yamlformCode
public function getExportFileName() {
return $this
->getBaseFileName() . '.' . $this
->getFileExtension();
}