WebformEntityDeleteMultipleForm.php in Webform 8.5
File
src/Form/WebformEntityDeleteMultipleForm.php
View source
<?php
namespace Drupal\webform\Form;
class WebformEntityDeleteMultipleForm extends WebformDeleteMultipleFormBase {
public function getDescription() {
return [
'title' => [
'#markup' => $this
->t('This action will…'),
],
'list' => [
'#theme' => 'item_list',
'#items' => [
$this
->t('Remove configuration'),
$this
->t('Delete all related submissions'),
$this
->formatPlural(count($this->selection), 'Affect any fields or nodes which reference this webform', 'Affect any fields or nodes which reference these webform', [
'@item' => $this->entityType
->getSingularLabel(),
'@items' => $this->entityType
->getPluralLabel(),
]),
],
],
];
}
}