You are here

public function ArchiverPluginDefinitionDecorator::getLabel in Plugin 8.2

Gets the human-readable plugin label.

Return value

\Drupal\Core\StringTranslation\TranslatableString|string|null The label or NULL if there is none.

Overrides ArrayPluginDefinitionDecorator::getLabel

File

src/PluginDefinition/ArchiverPluginDefinitionDecorator.php, line 24

Class

ArchiverPluginDefinitionDecorator
Provides an archiver plugin definition decorator.

Namespace

Drupal\plugin\PluginDefinition

Code

public function getLabel() {
  return isset($this->arrayDefinition['title']) ? $this->arrayDefinition['title'] : NULL;
}