You are here

public function ConfigTranslationContextualLink::getTitle in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/config_translation/src/Plugin/Menu/ContextualLink/ConfigTranslationContextualLink.php \Drupal\config_translation\Plugin\Menu\ContextualLink\ConfigTranslationContextualLink::getTitle()

Returns the localized title to be shown for this contextual link.

Subclasses may add optional arguments like NodeInterface $node = NULL that will be supplied by the ControllerResolver.

Return value

string The title to be shown for this action.

Overrides ContextualLinkDefault::getTitle

See also

\Drupal\Core\Menu\ContextualLinksManager::getTitle()

File

core/modules/config_translation/src/Plugin/Menu/ContextualLink/ConfigTranslationContextualLink.php, line 30
Contains \Drupal\config_translation\Plugin\Menu\ContextualLink\ConfigTranslationContextualLink.

Class

ConfigTranslationContextualLink
Defines a contextual link plugin with a dynamic title.

Namespace

Drupal\config_translation\Plugin\Menu\ContextualLink

Code

public function getTitle() {

  // Use the custom 'config_translation_plugin_id' plugin definition key to
  // retrieve the title. We need to retrieve a runtime title (as opposed to
  // storing the title on the plugin definition for the link) because it
  // contains translated parts that we need in the runtime language.
  $type_name = Unicode::strtolower($this
    ->mapperManager()
    ->createInstance($this->pluginDefinition['config_translation_plugin_id'])
    ->getTypeLabel());
  return $this
    ->t('Translate @type_name', array(
    '@type_name' => $type_name,
  ));
}