You are here

CacheflushBulkForm.php in CacheFlush 8

File

modules/cacheflush_ui/src/Plugin/views/field/CacheflushBulkForm.php
View source
<?php

namespace Drupal\cacheflush_ui\Plugin\views\field;

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

/**
 * Defines a cacheflush operations bulk form element.
 *
 * @ViewsField("cacheflush_bulk_form")
 */
class CacheflushBulkForm extends BulkForm {

  /**
   * {@inheritdoc}
   */
  protected function emptySelectedMessage() {
    return $this
      ->t('No content selected.');
  }

}

Classes

Namesort descending Description
CacheflushBulkForm Defines a cacheflush operations bulk form element.