You are here

public function LinkPluginDefinitionDecorator::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/LinkPluginDefinitionDecorator.php, line 24

Class

LinkPluginDefinitionDecorator
Provides a link (menu link, local action/task) plugin definition decorator.

Namespace

Drupal\plugin\PluginDefinition

Code

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