You are here

public function WebformSubmissionExportImportImporter::setWebform in Webform 6.x

Same name and namespace in other branches
  1. 8.5 modules/webform_submission_export_import/src/WebformSubmissionExportImportImporter.php \Drupal\webform_submission_export_import\WebformSubmissionExportImportImporter::setWebform()

Set the webform whose submissions are being imported.

Parameters

\Drupal\webform\WebformInterface $webform: A webform.

Overrides WebformSubmissionExportImportImporterInterface::setWebform

File

modules/webform_submission_export_import/src/WebformSubmissionExportImportImporter.php, line 143

Class

WebformSubmissionExportImportImporter
Webform submission export importer.

Namespace

Drupal\webform_submission_export_import

Code

public function setWebform(WebformInterface $webform = NULL) {
  $this->webform = $webform;
  $this->elementTypes = NULL;
}