ConfigMapperInterface

Defines an interface for configuration mapper. Hierarchy interface \Drupal\config_translation\ConfigMapperInterface File core/modules/config_translation/src/ConfigMapperInterface.php, line 12 Namespace Drupal\config_translation Members Name Modifiers Type Description ConfigMapperInterface::addConfigName public function Adds the given configuration name to the list of names. ConfigMapperInterface::getAddRoute public function Returns the route object for a translat

ConfigManagerInterface::uninstall

public ConfigManagerInterface::uninstall($type, $name) Uninstalls the configuration of a given extension. Parameters string $type: The extension type; e.g., 'module' or 'theme'. string $name: The name of the module or theme to install configuration for. File core/lib/Drupal/Core/Config/ConfigManagerInterface.php, line 91 Class ConfigManagerInterface Provides an interface for configuration manager. Namespace Drupal\Core\Config Code public function uninstall($type, $name);

ConfigManagerInterface::loadConfigEntityByName

public ConfigManagerInterface::loadConfigEntityByName($name) Loads a configuration entity using the configuration name. Parameters string $name: The configuration object name. Return value \Drupal\Core\Entity\EntityInterface|null The configuration entity or NULL if it does not exist. File core/lib/Drupal/Core/Config/ConfigManagerInterface.php, line 30 Class ConfigManagerInterface Provides an interface for configuration manager. Namespace Drupal\Core\Config Code public function loadCo

ConfigManagerInterface::getEntityTypeIdByName

public ConfigManagerInterface::getEntityTypeIdByName($name) Returns the entity type of a configuration object. Parameters string $name: The configuration object name. Return value string|null Either the entity type name, or NULL if none match. File core/lib/Drupal/Core/Config/ConfigManagerInterface.php, line 19 Class ConfigManagerInterface Provides an interface for configuration manager. Namespace Drupal\Core\Config Code public function getEntityTypeIdByName($name);

ConfigManagerInterface::getEntityManager

public ConfigManagerInterface::getEntityManager() Gets the entity manager. Return value \Drupal\Core\Entity\EntityManagerInterface The entity manager. File core/lib/Drupal/Core/Config/ConfigManagerInterface.php, line 38 Class ConfigManagerInterface Provides an interface for configuration manager. Namespace Drupal\Core\Config Code public function getEntityManager();

ConfigManagerInterface::getConfigFactory

public ConfigManagerInterface::getConfigFactory() Gets the config factory. Return value \Drupal\Core\Config\ConfigFactoryInterface The entity manager. File core/lib/Drupal/Core/Config/ConfigManagerInterface.php, line 46 Class ConfigManagerInterface Provides an interface for configuration manager. Namespace Drupal\Core\Config Code public function getConfigFactory();

ConfigManagerInterface::getConfigEntitiesToChangeOnDependencyRemoval

public ConfigManagerInterface::getConfigEntitiesToChangeOnDependencyRemoval($type, array $names, $dry_run = TRUE) Lists which config entities to update and delete on removal of a dependency. Parameters string $type: The type of dependency being checked. Either 'module', 'theme', 'config' or 'content'. array $names: The specific names to check. If $type equals 'module' or 'theme' then it should be a list of module names or theme names. In the case of 'config' or 'content' it should be a list of

ConfigManagerInterface::getConfigDependencyManager

public ConfigManagerInterface::getConfigDependencyManager() Creates and populates a ConfigDependencyManager object. The configuration dependency manager is populated with data from the active store. Return value \Drupal\Core\Config\Entity\ConfigDependencyManager File core/lib/Drupal/Core/Config/ConfigManagerInterface.php, line 101 Class ConfigManagerInterface Provides an interface for configuration manager. Namespace Drupal\Core\Config Code public function getConfigDependencyManager()

ConfigManagerInterface::getConfigCollectionInfo

public ConfigManagerInterface::getConfigCollectionInfo() Gets available collection information using the event system. Return value \Drupal\Core\Config\ConfigCollectionInfo The object which contains information about the available collections. File core/lib/Drupal/Core/Config/ConfigManagerInterface.php, line 165 Class ConfigManagerInterface Provides an interface for configuration manager. Namespace Drupal\Core\Config Code public function getConfigCollectionInfo();

ConfigManagerInterface::findMissingContentDependencies

public ConfigManagerInterface::findMissingContentDependencies() Finds missing content dependencies declared in configuration entities. Return value array A list of missing content dependencies. The array is keyed by UUID. Each value is an array with the following keys: 'entity_type', 'bundle' and 'uuid'. File core/lib/Drupal/Core/Config/ConfigManagerInterface.php, line 175 Class ConfigManagerInterface Provides an interface for configuration manager. Namespace Drupal\Core\Config Code p