ConfigNamesMapper::getBaseRouteParameters

public ConfigNamesMapper::getBaseRouteParameters() Returns the route parameters for the base route the mapper is attached to. Return value array Overrides ConfigMapperInterface::getBaseRouteParameters File core/modules/config_translation/src/ConfigNamesMapper.php, line 182 Class ConfigNamesMapper Configuration mapper base implementation. Namespace Drupal\config_translation Code public function getBaseRouteParameters() { return array(); }

ConfigNamesMapper::getBaseRouteName

public ConfigNamesMapper::getBaseRouteName() Returns the name of the base route the mapper is attached to. Return value string The name of the base route the mapper is attached to. Overrides ConfigMapperInterface::getBaseRouteName File core/modules/config_translation/src/ConfigNamesMapper.php, line 175 Class ConfigNamesMapper Configuration mapper base implementation. Namespace Drupal\config_translation Code public function getBaseRouteName() { return $this->pluginDefinition['base

ConfigNamesMapper::getBaseRoute

public ConfigNamesMapper::getBaseRoute() Returns the base route object the mapper is attached to. Return value \Symfony\Component\Routing\Route The base route object the mapper is attached to. Overrides ConfigMapperInterface::getBaseRoute File core/modules/config_translation/src/ConfigNamesMapper.php, line 189 Class ConfigNamesMapper Configuration mapper base implementation. Namespace Drupal\config_translation Code public function getBaseRoute() { if ($this->routeCollection) {

ConfigNamesMapper::getBasePath

public ConfigNamesMapper::getBasePath() Returns a processed path for the base route the mapper is attached to. Return value string Processed path with placeholders replaced. Overrides ConfigMapperInterface::getBasePath File core/modules/config_translation/src/ConfigNamesMapper.php, line 210 Class ConfigNamesMapper Configuration mapper base implementation. Namespace Drupal\config_translation Code public function getBasePath() { return Url::fromRoute($this->getBaseRouteName(), $thi

ConfigNamesMapper::getAddRouteParameters

public ConfigNamesMapper::getAddRouteParameters() Returns the route parameters for the translation add form route. Return value array Overrides ConfigMapperInterface::getAddRouteParameters File core/modules/config_translation/src/ConfigNamesMapper.php, line 261 Class ConfigNamesMapper Configuration mapper base implementation. Namespace Drupal\config_translation Code public function getAddRouteParameters() { // If sub-classes provide route parameters in getBaseRouteParameters(), they

ConfigNamesMapper::getAddRouteName

public ConfigNamesMapper::getAddRouteName() Returns route name for the translation add form route. Return value string Route name for the mapper. Overrides ConfigMapperInterface::getAddRouteName File core/modules/config_translation/src/ConfigNamesMapper.php, line 254 Class ConfigNamesMapper Configuration mapper base implementation. Namespace Drupal\config_translation Code public function getAddRouteName() { return 'config_translation.item.add.' . $this->getBaseRouteName(); }

ConfigNamesMapper::getAddRoute

public ConfigNamesMapper::getAddRoute() Returns the route object for a translation add form route. Return value \Symfony\Component\Routing\Route The route object for the translation page. Overrides ConfigMapperInterface::getAddRoute File core/modules/config_translation/src/ConfigNamesMapper.php, line 272 Class ConfigNamesMapper Configuration mapper base implementation. Namespace Drupal\config_translation Code public function getAddRoute() { $route = new Route( $this->getBaseRou

ConfigNamesMapper::create

public static ConfigNamesMapper::create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) Creates an instance of the plugin. Parameters \Symfony\Component\DependencyInjection\ContainerInterface $container: The container to pull out services used in the plugin. array $configuration: A configuration array containing information about the plugin instance. string $plugin_id: The plugin ID for the plugin instance. mixed $plugin_definition: The plugin implementatio

ConfigNamesMapper::addConfigName

public ConfigNamesMapper::addConfigName($name) Adds the given configuration name to the list of names. Note that it is the responsibility of the calling code to ensure that the configuration exists. Parameters string $name: Configuration name. Overrides ConfigMapperInterface::addConfigName File core/modules/config_translation/src/ConfigNamesMapper.php, line 355 Class ConfigNamesMapper Configuration mapper base implementation. Namespace Drupal\config_translation Code public function ad

ConfigNamesMapper::$typedConfigManager

The typed config manager. Type: \Drupal\Core\Config\TypedConfigManagerInterface File core/modules/config_translation/src/ConfigNamesMapper.php, line 38 Class ConfigNamesMapper Configuration mapper base implementation. Namespace Drupal\config_translation Code protected $typedConfigManager;