You are here

public function WebformExporterBase::hasFiles in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/Plugin/WebformExporterBase.php \Drupal\webform\Plugin\WebformExporterBase::hasFiles()

Determine if exporter can include uploaded files (in a zipped archive).

Return value

bool TRUE if exporter can include uploaded files (in a zipped archive).

Overrides WebformExporterInterface::hasFiles

File

src/Plugin/WebformExporterBase.php, line 159

Class

WebformExporterBase
Provides a base class for a results exporter.

Namespace

Drupal\webform\Plugin

Code

public function hasFiles() {
  return $this->pluginDefinition['files'];
}