You are here

public function WebformSubmissionsDeleteFormBase::getBatchLimit in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Form/WebformSubmissionsDeleteFormBase.php \Drupal\webform\Form\WebformSubmissionsDeleteFormBase::getBatchLimit()

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

Return value

int Number of submissions to be deleted with each batch.

2 calls to WebformSubmissionsDeleteFormBase::getBatchLimit()
WebformSubmissionsDeleteFormBase::batchProcess in src/Form/WebformSubmissionsDeleteFormBase.php
Batch API callback; Delete submissions.
WebformSubmissionsDeleteFormBase::submitForm in src/Form/WebformSubmissionsDeleteFormBase.php
Form submission handler.

File

src/Form/WebformSubmissionsDeleteFormBase.php, line 158

Class

WebformSubmissionsDeleteFormBase
Base webform for deleting webform submission.

Namespace

Drupal\webform\Form

Code

public function getBatchLimit() {
  return $this
    ->config('webform.settings')
    ->get('batch.default_batch_delete_size') ?: $this->batchLimit;
}