public ConfigMapperManager::getMappers(RouteCollection $collection = NULL)
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
1 2 3 4 5 6 7 8 9 10 11 | public function getMappers(RouteCollection $collection = NULL) { $mappers = array (); foreach ( $this ->getDefinitions() as $id => $definition ) { $mappers [ $id ] = $this ->createInstance( $id ); if ( $collection ) { $mappers [ $id ]->setRouteCollection( $collection ); } } return $mappers ; } |
Please login to continue.