ConfigNamesMapper::getWeight

public ConfigNamesMapper::getWeight() Returns the weight of the mapper. Return value int The weight of the mapper. Overrides ConfigMapperInterface::getWeight File core/modules/config_translation/src/ConfigNamesMapper.php, line 362 Class ConfigNamesMapper Configuration mapper base implementation. Namespace Drupal\config_translation Code public function getWeight() { return $this->pluginDefinition['weight']; }

ConfigNamesMapper::getTypeName

public ConfigNamesMapper::getTypeName() Returns the name of the type of data the mapper encapsulates. Return value string The name of the type of data the mapper encapsulates. Overrides ConfigMapperInterface::getTypeName File core/modules/config_translation/src/ConfigNamesMapper.php, line 462 Class ConfigNamesMapper Configuration mapper base implementation. Namespace Drupal\config_translation Code public function getTypeName() { return $this->t('Settings'); }

ConfigNamesMapper::getTypeLabel

public ConfigNamesMapper::getTypeLabel() Returns the label of the type of data the mapper encapsulates. Return value string The label of the type of data the mapper encapsulates. Overrides ConfigMapperInterface::getTypeLabel File core/modules/config_translation/src/ConfigNamesMapper.php, line 376 Class ConfigNamesMapper Configuration mapper base implementation. Namespace Drupal\config_translation Code public function getTypeLabel() { return $this->getTitle(); }

ConfigNamesMapper::getTitle

public ConfigNamesMapper::getTitle() Returns title of this translation page. Return value string The page title. Overrides ConfigMapperInterface::getTitle File core/modules/config_translation/src/ConfigNamesMapper.php, line 166 Class ConfigNamesMapper Configuration mapper base implementation. Namespace Drupal\config_translation Code public function getTitle() { // A title from a *.config_translation.yml. Should be translated for // display in the current page language. return $t

ConfigNamesMapper::getOverviewRouteParameters

public ConfigNamesMapper::getOverviewRouteParameters() Returns the route parameters for the translation overview route. Return value array Overrides ConfigMapperInterface::getOverviewRouteParameters File core/modules/config_translation/src/ConfigNamesMapper.php, line 224 Class ConfigNamesMapper Configuration mapper base implementation. Namespace Drupal\config_translation Code public function getOverviewRouteParameters() { return $this->getBaseRouteParameters(); }

ConfigNamesMapper::getOverviewRouteName

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

ConfigNamesMapper::getOverviewRoute

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

ConfigNamesMapper::getOverviewPath

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

ConfigNamesMapper::getOperations

public ConfigNamesMapper::getOperations() Provides an array of information to build a list of operation links. Return value array An associative array of operation link data for this list, keyed by operation name, containing the following key-value pairs: title: The localized title of the operation. href: The path for the operation. options: An array of URL options for the path. weight: The weight of this operation. Overrides ConfigMapperInterface::getOperations File core/modules/config_

ConfigNamesMapper::getLangcodeFromConfig

public ConfigNamesMapper::getLangcodeFromConfig($config_name) Returns the language code of a configuration object given its name. Parameters string $config_name: The name of the configuration object. Return value string The language code of the configuration object. Overrides ConfigMapperInterface::getLangcodeFromConfig File core/modules/config_translation/src/ConfigNamesMapper.php, line 396 Class ConfigNamesMapper Configuration mapper base implementation. Namespace Drupal\config_tran