Skip to content
ConfirmDeleteMultiple.php 1.13 KiB
Newer Older
use Drupal\Core\Entity\Form\DeleteMultipleForm as EntityDeleteMultipleForm;

/**
 * Provides the comment multiple delete confirmation form.
class ConfirmDeleteMultiple extends EntityDeleteMultipleForm {

  /**
   * {@inheritdoc}
   */
  public function getQuestion() {
    return $this->formatPlural(count($this->selection), 'Are you sure you want to delete this comment and all its children?', 'Are you sure you want to delete these comments and all their children?');
  public function getCancelUrl() {
  protected function getDeletedMessage($count) {
    return $this->formatPlural($count, 'Deleted @count comment.', 'Deleted @count comments.');
  protected function getInaccessibleMessage($count) {
    return $this->formatPlural($count, "@count comment has not been deleted because you do not have the necessary permissions.", "@count comments have not been deleted because you do not have the necessary permissions.");