You are here

public function NumberOfItemsStatistic::getTitle in Purge 8.3

Gets the title of the counter.

Return value

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

Overrides ExplainedCounterInterface::getTitle

File

src/Plugin/Purge/Queue/NumberOfItemsStatistic.php, line 27

Class

NumberOfItemsStatistic
The number of items currently in the queue.

Namespace

Drupal\purge\Plugin\Purge\Queue

Code

public function getTitle() {
  return $this
    ->t('The number of items currently in the queue.');
}