You are here

public function ConfigMapperManager::getMappers in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/config_translation/src/ConfigMapperManager.php \Drupal\config_translation\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_translation

Code

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