function 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\LocalTaskCode
protected function mapperManager() {
if (!$this->mapperManager) {
$this->mapperManager = \Drupal::service('plugin.manager.config_translation.mapper');
}
return $this->mapperManager;
}