Mercurial > hg > cmmr2012-drupal-site
view core/modules/comment/src/Form/ConfirmDeleteMultiple.php @ 4:a9cd425dd02b
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:11:55 +0000 |
parents | c75dbcec494b |
children |
line wrap: on
line source
<?php namespace Drupal\comment\Form; use Drupal\Core\Entity\Form\DeleteMultipleForm as EntityDeleteMultipleForm; use Drupal\Core\Url; /** * Provides the comment multiple delete confirmation form. * * @internal */ 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?'); } /** * {@inheritdoc} */ public function getCancelUrl() { return new Url('comment.admin'); } /** * {@inheritdoc} */ protected function getDeletedMessage($count) { return $this->formatPlural($count, 'Deleted @count comment.', 'Deleted @count comments.'); } /** * {@inheritdoc} */ 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."); } }