You are here

public function WebformEntityPrintWebformExporter::getBatchLimit in Webform 6.x

Same name and namespace in other branches
  1. 8.5 modules/webform_entity_print/src/Plugin/WebformExporter/WebformEntityPrintWebformExporter.php \Drupal\webform_entity_print\Plugin\WebformExporter\WebformEntityPrintWebformExporter::getBatchLimit()

Get the number of submissions to be exported with each batch.

Return value

int Number of submissions to be exported with each batch.

Overrides WebformExporterBase::getBatchLimit

File

modules/webform_entity_print/src/Plugin/WebformExporter/WebformEntityPrintWebformExporter.php, line 133

Class

WebformEntityPrintWebformExporter
Defines a Webform Entity Print PDF exporter.

Namespace

Drupal\webform_entity_print\Plugin\WebformExporter

Code

public function getBatchLimit() {

  // Limit batch document export to 10 submissions.
  return 10;
}