You are here

protected function ConfigTranslationLocalTask::mapperManager 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::mapperManager()
  2. 9 core/modules/config_translation/src/Plugin/Menu/LocalTask/ConfigTranslationLocalTask.php \Drupal\config_translation\Plugin\Menu\LocalTask\ConfigTranslationLocalTask::mapperManager()

Gets the mapper manager.

Return value

\Drupal\config_translation\ConfigMapperManagerInterface The mapper manager.

1 call to ConfigTranslationLocalTask::mapperManager()
ConfigTranslationLocalTask::getTitle in core/modules/config_translation/src/Plugin/Menu/LocalTask/ConfigTranslationLocalTask.php
Returns the localized title to be shown for this tab.

File

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

Class

ConfigTranslationLocalTask
Defines a local task plugin with a dynamic title.

Namespace

Drupal\config_translation\Plugin\Menu\LocalTask

Code

protected function mapperManager() {
  if (!$this->mapperManager) {
    $this->mapperManager = \Drupal::service('plugin.manager.config_translation.mapper');
  }
  return $this->mapperManager;
}