You are here

public function QueuerBase::getLabel in Purge 8.3

Retrieve the title of this queuer.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The translated label.

Overrides QueuerInterface::getLabel

File

src/Plugin/Purge/Queuer/QueuerBase.php, line 15

Class

QueuerBase
Provides base implementations for queuers.

Namespace

Drupal\purge\Plugin\Purge\Queuer

Code

public function getLabel() {
  return $this
    ->getPluginDefinition()['label'];
}