public function WebformSubmissionExporter::getWebform in Webform 6.x
Same name and namespace in other branches
- 8.5 src/WebformSubmissionExporter.php \Drupal\webform\WebformSubmissionExporter::getWebform()
Get the webform whose submissions are being exported.
Return value
\Drupal\webform\WebformInterface A webform.
Overrides WebformSubmissionExporterInterface::getWebform
5 calls to WebformSubmissionExporter::getWebform()
- WebformSubmissionExporter::buildExportOptionsForm in src/
WebformSubmissionExporter.php - Build export options webform.
- WebformSubmissionExporter::getQuery in src/
WebformSubmissionExporter.php - Get webform submission query for specified YAMl webform and export options.
- WebformSubmissionExporter::requiresBatch in src/
WebformSubmissionExporter.php - Determine if webform submissions must be exported using batch processing.
- WebformSubmissionExporter::setExporter in src/
WebformSubmissionExporter.php - Set results exporter.
- WebformSubmissionExporter::writeRecords in src/
WebformSubmissionExporter.php - Write webform results header to export file.
File
- src/
WebformSubmissionExporter.php, line 156
Class
- WebformSubmissionExporter
- Webform submission exporter.
Namespace
Drupal\webformCode
public function getWebform() {
return $this->webform;
}