ConfigManager::getConfigFactory

public ConfigManager::getConfigFactory() Gets the config factory. Return value \Drupal\Core\Config\ConfigFactoryInterface The entity manager. Overrides ConfigManagerInterface::getConfigFactory File core/lib/Drupal/Core/Config/ConfigManager.php, line 129 Class ConfigManager The ConfigManager provides helper functions for the configuration system. Namespace Drupal\Core\Config Code public function getConfigFactory() { return $this->configFactory; }

ConfigManager::getConfigEntitiesToChangeOnDependencyRemoval

public ConfigManager::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 configur

ConfigManager::getConfigDependencyManager

public ConfigManager::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 Overrides ConfigManagerInterface::getConfigDependencyManager File core/lib/Drupal/Core/Config/ConfigManager.php, line 228 Class ConfigManager The ConfigManager provides helper functions for the configuration system. Namespace Drupal\Cor

ConfigManager::getConfigCollectionInfo

public ConfigManager::getConfigCollectionInfo() Gets available collection information using the event system. Return value \Drupal\Core\Config\ConfigCollectionInfo The object which contains information about the available collections. Overrides ConfigManagerInterface::getConfigCollectionInfo File core/lib/Drupal/Core/Config/ConfigManager.php, line 367 Class ConfigManager The ConfigManager provides helper functions for the configuration system. Namespace Drupal\Core\Config Code public

ConfigManager::findMissingContentDependencies

public ConfigManager::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'. Overrides ConfigManagerInterface::findMissingContentDependencies File core/lib/Drupal/Core/Config/ConfigManager.php, line 459 Class ConfigManager The ConfigManager provides helper functions for th

ConfigManager::findConfigEntityDependentsAsEntities

public ConfigManager::findConfigEntityDependentsAsEntities($type, array $names, ConfigDependencyManager $dependency_manager = NULL) Finds config entities that are dependent on extensions or entities. 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

ConfigManager::findConfigEntityDependents

public ConfigManager::findConfigEntityDependents($type, array $names, ConfigDependencyManager $dependency_manager = NULL) Finds config entities that are dependent on extensions or entities. 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

ConfigManager::diff

public ConfigManager::diff(StorageInterface $source_storage, StorageInterface $target_storage, $source_name, $target_name = NULL, $collection = StorageInterface::DEFAULT_COLLECTION) Creates a Diff object using the config data from the two storages. @todo Make renderer injectable Parameters \Drupal\Core\Config\StorageInterface $source_storage: The storage to diff configuration from. \Drupal\Core\Config\StorageInterface $target_storage: The storage to diff configuration to. string $source_name:

ConfigManager::createSnapshot

public ConfigManager::createSnapshot(StorageInterface $source_storage, StorageInterface $snapshot_storage) Creates a configuration snapshot following a successful import. Parameters \Drupal\Core\Config\StorageInterface $source_storage: The storage to synchronize configuration from. \Drupal\Core\Config\StorageInterface $snapshot_storage: The storage to synchronize configuration to. Overrides ConfigManagerInterface::createSnapshot File core/lib/Drupal/Core/Config/ConfigManager.php, line 170 C

ConfigManager::callOnDependencyRemoval

protected ConfigManager::callOnDependencyRemoval(ConfigEntityInterface $entity, array $dependent_entities, $type, array $names) Calls an entity's onDependencyRemoval() method. A helper method to call onDependencyRemoval() with the correct list of affected entities. This list should only contain dependencies on the entity. Configuration and content entity dependencies will be converted into entity objects. Parameters \Drupal\Core\Config\Entity\ConfigEntityInterface $entity: The entity to call o