public function YamlFormSubmissionExporter::writeFooter in YAML Form 8
Write form results footer to export file.
Overrides YamlFormSubmissionExporterInterface::writeFooter
1 call to YamlFormSubmissionExporter::writeFooter()
- YamlFormSubmissionExporter::generate in src/
YamlFormSubmissionExporter.php - Execute results exporter and write export to a temp file.
File
- src/
YamlFormSubmissionExporter.php, line 674
Class
- YamlFormSubmissionExporter
- Form submission exporter.
Namespace
Drupal\yamlformCode
public function writeFooter() {
$this
->getExporter()
->openExport();
$this
->getExporter()
->writeFooter();
$this
->getExporter()
->closeExport();
}