You are here

public function ProcessorBase::getDescription in Purge 8.3

Retrieve the description of this processor.

Return value

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

Overrides ProcessorInterface::getDescription

File

src/Plugin/Purge/Processor/ProcessorBase.php, line 22

Class

ProcessorBase
Provides base implementations for processors.

Namespace

Drupal\purge\Plugin\Purge\Processor

Code

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