ConfigEntityMapper::getOverviewRouteName

public ConfigEntityMapper::getOverviewRouteName() Returns route name for the translation overview route. Return value string Route name for the mapper. Overrides ConfigNamesMapper::getOverviewRouteName File core/modules/config_translation/src/ConfigEntityMapper.php, line 253 Class ConfigEntityMapper Configuration mapper for configuration entities. Namespace Drupal\config_translation Code public function getOverviewRouteName() { return 'entity.' . $this->entityType . '.config_tran

ConfigEntityMapper::getOperations

public ConfigEntityMapper::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 ConfigNamesMapper::getOperations File core/modules/config_tra

ConfigEntityMapper::getEntity

public ConfigEntityMapper::getEntity() Gets the entity instance for this mapper. Return value \Drupal\Core\Config\Entity\ConfigEntityInterface $entity The configuration entity. File core/modules/config_translation/src/ConfigEntityMapper.php, line 119 Class ConfigEntityMapper Configuration mapper for configuration entities. Namespace Drupal\config_translation Code public function getEntity() { return $this->entity; }

ConfigEntityMapper::getContextualLinkGroup

public ConfigEntityMapper::getContextualLinkGroup() Returns the name of the contextual link group to add contextual links to. Return value string|null A contextual link group name or null if no link should be added. Overrides ConfigNamesMapper::getContextualLinkGroup File core/modules/config_translation/src/ConfigEntityMapper.php, line 236 Class ConfigEntityMapper Configuration mapper for configuration entities. Namespace Drupal\config_translation Code public function getContextualLin

ConfigEntityMapper::getBaseRouteParameters

public ConfigEntityMapper::getBaseRouteParameters() Returns the route parameters for the base route the mapper is attached to. Return value array Overrides ConfigNamesMapper::getBaseRouteParameters File core/modules/config_translation/src/ConfigEntityMapper.php, line 167 Class ConfigEntityMapper Configuration mapper for configuration entities. Namespace Drupal\config_translation Code public function getBaseRouteParameters() { return array($this->entityType => $this->entity-

ConfigEntityMapper::create

public static ConfigEntityMapper::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 implementati

ConfigEntityMapper::$typeLabel

The label for the entity type. Type: string File core/modules/config_translation/src/ConfigEntityMapper.php, line 49 Class ConfigEntityMapper Configuration mapper for configuration entities. Namespace Drupal\config_translation Code protected $typeLabel;

ConfigEntityMapper::$entityType

Configuration entity type name. Type: string File core/modules/config_translation/src/ConfigEntityMapper.php, line 35 Class ConfigEntityMapper Configuration mapper for configuration entities. Namespace Drupal\config_translation Code protected $entityType;

ConfigEntityMapper::$entityManager

The entity manager. Type: \Drupal\Core\Entity\EntityManagerInterface File core/modules/config_translation/src/ConfigEntityMapper.php, line 28 Class ConfigEntityMapper Configuration mapper for configuration entities. Namespace Drupal\config_translation Code protected $entityManager;

ConfigEntityMapper::$entity

Loaded entity instance to help produce the translation interface. Type: \Drupal\Core\Config\Entity\ConfigEntityInterface File core/modules/config_translation/src/ConfigEntityMapper.php, line 42 Class ConfigEntityMapper Configuration mapper for configuration entities. Namespace Drupal\config_translation Code protected $entity;