WebformSubmissionDeleteMultipleForm.php in Webform 8.5
File
src/Form/WebformSubmissionDeleteMultipleForm.php
View source
<?php
namespace Drupal\webform\Form;
class WebformSubmissionDeleteMultipleForm extends WebformDeleteMultipleFormBase {
public function getDescription() {
return [
'title' => [
'#markup' => $this
->t('This action will…'),
],
'list' => [
'#theme' => 'item_list',
'#items' => [
$this
->t('Remove records from the database'),
$this
->t('Delete any uploaded files'),
$this
->t('Cancel all pending actions'),
],
],
];
}
}