ConfigMapperInterface::getConfigNames

public ConfigMapperInterface::getConfigNames() Returns an array of configuration names for the mapper. Return value array An array of configuration names for the mapper. File core/modules/config_translation/src/ConfigMapperInterface.php, line 167 Class ConfigMapperInterface Defines an interface for configuration mapper. Namespace Drupal\config_translation Code public function getConfigNames();

ConfigMapperInterface::getConfigData

public ConfigMapperInterface::getConfigData() Returns an array with all configuration data. Return value array Configuration data keyed by configuration names. File core/modules/config_translation/src/ConfigMapperInterface.php, line 194 Class ConfigMapperInterface Defines an interface for configuration mapper. Namespace Drupal\config_translation Code public function getConfigData();

ConfigMapperInterface::getBaseRouteParameters

public ConfigMapperInterface::getBaseRouteParameters() Returns the route parameters for the base route the mapper is attached to. Return value array File core/modules/config_translation/src/ConfigMapperInterface.php, line 43 Class ConfigMapperInterface Defines an interface for configuration mapper. Namespace Drupal\config_translation Code public function getBaseRouteParameters();

ConfigMapperInterface::getBaseRouteName

public ConfigMapperInterface::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. File core/modules/config_translation/src/ConfigMapperInterface.php, line 36 Class ConfigMapperInterface Defines an interface for configuration mapper. Namespace Drupal\config_translation Code public function getBaseRouteName();

ConfigMapperInterface::getBaseRoute

public ConfigMapperInterface::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. File core/modules/config_translation/src/ConfigMapperInterface.php, line 51 Class ConfigMapperInterface Defines an interface for configuration mapper. Namespace Drupal\config_translation Code public function getBaseRoute();

ConfigMapperInterface::getBasePath

public ConfigMapperInterface::getBasePath() Returns a processed path for the base route the mapper is attached to. Return value string Processed path with placeholders replaced. File core/modules/config_translation/src/ConfigMapperInterface.php, line 59 Class ConfigMapperInterface Defines an interface for configuration mapper. Namespace Drupal\config_translation Code public function getBasePath();

ConfigMapperInterface::getAddRouteParameters

public ConfigMapperInterface::getAddRouteParameters() Returns the route parameters for the translation add form route. Return value array File core/modules/config_translation/src/ConfigMapperInterface.php, line 105 Class ConfigMapperInterface Defines an interface for configuration mapper. Namespace Drupal\config_translation Code public function getAddRouteParameters();

ConfigMapperInterface::getAddRouteName

public ConfigMapperInterface::getAddRouteName() Returns route name for the translation add form route. Return value string Route name for the mapper. File core/modules/config_translation/src/ConfigMapperInterface.php, line 98 Class ConfigMapperInterface Defines an interface for configuration mapper. Namespace Drupal\config_translation Code public function getAddRouteName();

ConfigMapperInterface::getAddRoute

public ConfigMapperInterface::getAddRoute() Returns the route object for a translation add form route. Return value \Symfony\Component\Routing\Route The route object for the translation page. File core/modules/config_translation/src/ConfigMapperInterface.php, line 113 Class ConfigMapperInterface Defines an interface for configuration mapper. Namespace Drupal\config_translation Code public function getAddRoute();

ConfigMapperInterface::addConfigName

public ConfigMapperInterface::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. File core/modules/config_translation/src/ConfigMapperInterface.php, line 178 Class ConfigMapperInterface Defines an interface for configuration mapper. Namespace Drupal\config_translation Code public function addConfigName($name);