function ConfigTranslationLocalTask::mapperManager

Same name and namespace in other branches
  1. 9 core/modules/config_translation/src/Plugin/Menu/LocalTask/ConfigTranslationLocalTask.php \Drupal\config_translation\Plugin\Menu\LocalTask\ConfigTranslationLocalTask::mapperManager()
  2. 10 core/modules/config_translation/src/Plugin/Menu/LocalTask/ConfigTranslationLocalTask.php \Drupal\config_translation\Plugin\Menu\LocalTask\ConfigTranslationLocalTask::mapperManager()
  3. 11.x 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.

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;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.