You are here

public function WebformAttachmentBase::getExportAttachmentsBatchLimit in Webform 6.x

Get attachment export batch limit.

Return value

int|NULL Batch limit or NULL if the batch limit should not be overidden.

Overrides WebformElementAttachmentInterface::getExportAttachmentsBatchLimit

1 method overrides WebformAttachmentBase::getExportAttachmentsBatchLimit()
WebformEntityPrintAttachment::getExportAttachmentsBatchLimit in modules/webform_entity_print_attachment/src/Plugin/WebformElement/WebformEntityPrintAttachment.php
Get attachment export batch limit.

File

modules/webform_attachment/src/Plugin/WebformElement/WebformAttachmentBase.php, line 297

Class

WebformAttachmentBase
Provides a base class for 'webform_attachment' elements.

Namespace

Drupal\webform_attachment\Plugin\WebformElement

Code

public function getExportAttachmentsBatchLimit() {
  return NULL;
}