Same name and namespace in other branches
  1. 8.9.x core/modules/config_translation/src/ConfigMapperManagerInterface.php \Drupal\config_translation\ConfigMapperManagerInterface
  2. 9 core/modules/config_translation/src/ConfigMapperManagerInterface.php \Drupal\config_translation\ConfigMapperManagerInterface

Provides a common interface for config mapper managers.

Hierarchy

Expanded class hierarchy of ConfigMapperManagerInterface

All classes that implement ConfigMapperManagerInterface

8 files declare their use of ConfigMapperManagerInterface
ConfigTranslationContextualLinks.php in core/modules/config_translation/src/Plugin/Derivative/ConfigTranslationContextualLinks.php
ConfigTranslationController.php in core/modules/config_translation/src/Controller/ConfigTranslationController.php
ConfigTranslationDeleteForm.php in core/modules/config_translation/src/Form/ConfigTranslationDeleteForm.php
ConfigTranslationFormBase.php in core/modules/config_translation/src/Form/ConfigTranslationFormBase.php
ConfigTranslationListController.php in core/modules/config_translation/src/Controller/ConfigTranslationListController.php

... See full list

File

core/modules/config_translation/src/ConfigMapperManagerInterface.php, line 11

Namespace

Drupal\config_translation
View source
interface ConfigMapperManagerInterface extends PluginManagerInterface {

  /**
   * Returns an array of all mappers.
   *
   * @param \Symfony\Component\Routing\RouteCollection $collection
   *   The route collection used to initialize the mappers.
   *
   * @return \Drupal\config_translation\ConfigMapperInterface[]
   *   An array of all mappers.
   */
  public function getMappers(RouteCollection $collection = NULL);

  /**
   * Returns TRUE if the configuration data has translatable items.
   *
   * @param string $name
   *   Configuration key.
   *
   * @return bool
   *   A boolean indicating if the configuration data has translatable items.
   */
  public function hasTranslatable($name);

}

Members

Namesort descending Modifiers Type Description Overrides
ConfigMapperManagerInterface::getMappers public function Returns an array of all mappers.
ConfigMapperManagerInterface::hasTranslatable public function Returns TRUE if the configuration data has translatable items.
DiscoveryInterface::getDefinition public function Gets a specific plugin definition. 2
DiscoveryInterface::getDefinitions public function Gets the definition of all plugins for this type. 3
DiscoveryInterface::hasDefinition public function Indicates if a specific plugin definition exists.
FactoryInterface::createInstance public function Creates a plugin instance based on the provided ID and configuration. 6
MapperInterface::getInstance public function Gets or creates a plugin instance that satisfies the given options. 2