You are here

CommentBulkForm.php in Drupal 8

Same filename and directory in other branches
  1. 9 core/modules/comment/src/Plugin/views/field/CommentBulkForm.php

File

core/modules/comment/src/Plugin/views/field/CommentBulkForm.php
View source
<?php

namespace Drupal\comment\Plugin\views\field;

use Drupal\views\Plugin\views\field\BulkForm;

/**
 * Defines a comment operations bulk form element.
 *
 * @ViewsField("comment_bulk_form")
 */
class CommentBulkForm extends BulkForm {

  /**
   * {@inheritdoc}
   */
  protected function emptySelectedMessage() {
    return $this
      ->t('Select one or more comments to perform the update on.');
  }

}

Classes

Namesort descending Description
CommentBulkForm Defines a comment operations bulk form element.