You are here

interface QueuerInterface in Purge 8.3

Describes a plugin that queues invalidation objects.

Hierarchy

Expanded class hierarchy of QueuerInterface

All classes that implement QueuerInterface

10 files declare their use of QueuerInterface
AQueuer.php in tests/modules/purge_queuer_test/src/Plugin/Purge/Queuer/AQueuer.php
BQueuer.php in tests/modules/purge_queuer_test/src/Plugin/Purge/Queuer/BQueuer.php
CoreTagsQueuer.php in modules/purge_queuer_coretags/src/Plugin/Purge/Queuer/CoreTagsQueuer.php
CQueuer.php in tests/modules/purge_queuer_test/src/Plugin/Purge/Queuer/CQueuer.php
DrushQueueAddQueuer.php in modules/purge_drush/src/Plugin/Purge/Queuer/DrushQueueAddQueuer.php

... See full list

File

src/Plugin/Purge/Queuer/QueuerInterface.php, line 10

Namespace

Drupal\purge\Plugin\Purge\Queuer
View source
interface QueuerInterface extends PluginInspectionInterface {

  /**
   * Retrieve the title of this queuer.
   *
   * @return \Drupal\Core\StringTranslation\TranslatableMarkup
   *   The translated label.
   */
  public function getLabel();

  /**
   * Retrieve the description of this queuer.
   *
   * @return \Drupal\Core\StringTranslation\TranslatableMarkup
   *   The translated description.
   */
  public function getDescription();

}

Members

Namesort descending Modifiers Type Description Overrides
PluginInspectionInterface::getPluginDefinition public function Gets the definition of the plugin implementation. 4
PluginInspectionInterface::getPluginId public function Gets the plugin_id of the plugin instance. 2
QueuerInterface::getDescription public function Retrieve the description of this queuer. 1
QueuerInterface::getLabel public function Retrieve the title of this queuer. 1