function ConfigMapperManager::getMappers
Returns an array of all mappers.
Parameters
\Symfony\Component\Routing\RouteCollection $collection: The route collection used to initialize the mappers.
Return value
\Drupal\config_translation\ConfigMapperInterface[] An array of all mappers.
Overrides ConfigMapperManagerInterface::getMappers
File
- 
              core/
modules/ config_translation/ src/ ConfigMapperManager.php, line 113  
Class
- ConfigMapperManager
 - Manages plugins for configuration translation mappers.
 
Namespace
Drupal\config_translationCode
public function getMappers(RouteCollection $collection = NULL) {
  $mappers = [];
  foreach ($this->getDefinitions() as $id => $definition) {
    $mappers[$id] = $this->createInstance($id);
    if ($collection) {
      $mappers[$id]->setRouteCollection($collection);
    }
  }
  return $mappers;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.