You are here

public function ConfigTranslationLocalTask::getTitle in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/config_translation/src/Plugin/Menu/LocalTask/ConfigTranslationLocalTask.php \Drupal\config_translation\Plugin\Menu\LocalTask\ConfigTranslationLocalTask::getTitle()
  2. 9 core/modules/config_translation/src/Plugin/Menu/LocalTask/ConfigTranslationLocalTask.php \Drupal\config_translation\Plugin\Menu\LocalTask\ConfigTranslationLocalTask::getTitle()

Returns the localized title to be shown for this tab.

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

Return value

string The title of the local task.

Overrides LocalTaskDefault::getTitle

File

core/modules/config_translation/src/Plugin/Menu/LocalTask/ConfigTranslationLocalTask.php, line 25

Class

ConfigTranslationLocalTask
Defines a local task plugin with a dynamic title.

Namespace

Drupal\config_translation\Plugin\Menu\LocalTask

Code

public function getTitle(Request $request = NULL) {

  // Take custom 'config_translation_plugin_id' plugin definition key to
  // retrieve 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 = mb_strtolower($this
    ->mapperManager()
    ->createInstance($this->pluginDefinition['config_translation_plugin_id'])
    ->getTypeLabel());
  return $this
    ->t('Translate @type_name', [
    '@type_name' => $type_name,
  ]);
}