Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / comment / src / Plugin / views / field / CommentBulkForm.php
1 <?php
2
3 namespace Drupal\comment\Plugin\views\field;
4
5 use Drupal\system\Plugin\views\field\BulkForm;
6
7 /**
8  * Defines a comment operations bulk form element.
9  *
10  * @ViewsField("comment_bulk_form")
11  */
12 class CommentBulkForm extends BulkForm {
13
14   /**
15    * {@inheritdoc}
16    */
17   protected function emptySelectedMessage() {
18     return $this->t('Select one or more comments to perform the update on.');
19   }
20
21 }