You are here

protected function WebformSubmissionExporter::hasWebformExportAttachmentElements in Webform 6.x

Determin if the webform c elements with files that can be exported.

Return value

array An associative array of attachment elements with files that can be exported.

1 call to WebformSubmissionExporter::hasWebformExportAttachmentElements()
WebformSubmissionExporter::buildExportOptionsForm in src/WebformSubmissionExporter.php
Build export options webform.

File

src/WebformSubmissionExporter.php, line 1062

Class

WebformSubmissionExporter
Webform submission exporter.

Namespace

Drupal\webform

Code

protected function hasWebformExportAttachmentElements() {
  return $this
    ->getWebformExportAttachmentElements() ? TRUE : FALSE;
}