ConfigImporter::getProcessedExtensions

public ConfigImporter::getProcessedExtensions() Gets list of processed extension changes. Return value array An array containing a list of processed extension changes. File core/lib/Drupal/Core/Config/ConfigImporter.php, line 336 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code public function getProcessedExtensions() { return $this->processedExtensions; }

ConfigImporter::getProcessedConfiguration

public ConfigImporter::getProcessedConfiguration($collection = StorageInterface::DEFAULT_COLLECTION) Gets list of processed changes. Parameters string $collection: (optional) The configuration collection to get processed changes for. Defaults to the default collection. Return value array An array containing a list of processed changes. File core/lib/Drupal/Core/Config/ConfigImporter.php, line 295 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code

ConfigImporter::getNextExtensionOperation

protected ConfigImporter::getNextExtensionOperation() Gets the next extension operation to perform. Return value array|bool An array containing the next operation and extension name to perform it on. If there is nothing left to do returns FALSE; File core/lib/Drupal/Core/Config/ConfigImporter.php, line 659 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code protected function getNextExtensionOperation() { foreach (array('module', 'theme') as $typ

ConfigImporter::getNextConfigurationOperation

protected ConfigImporter::getNextConfigurationOperation() Gets the next configuration operation to perform. Return value array|bool An array containing the next operation and configuration name to perform it on. If there is nothing left to do returns FALSE; File core/lib/Drupal/Core/Config/ConfigImporter.php, line 682 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code protected function getNextConfigurationOperation() { // The order configuratio

ConfigImporter::getExtensionChangelist

public ConfigImporter::getExtensionChangelist($type, $op = NULL) Gets a list changes for extensions. Parameters string $type: The type of extension, either 'theme' or 'module'. string $op: The change operation to get the unprocessed list for, either install or uninstall. Return value array An array of extension names. File core/lib/Drupal/Core/Config/ConfigImporter.php, line 425 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code public function g

ConfigImporter::getErrors

public ConfigImporter::getErrors() Returns error messages created while running the import. Return value array List of messages. File core/lib/Drupal/Core/Config/ConfigImporter.php, line 216 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code public function getErrors() { return $this->errors; }

ConfigImporter::getEmptyExtensionsProcessedList

protected ConfigImporter::getEmptyExtensionsProcessedList() Gets an empty list of extensions to process. Return value array An empty list of extensions to process. File core/lib/Drupal/Core/Config/ConfigImporter.php, line 255 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code protected function getEmptyExtensionsProcessedList() { return array( 'module' => array( 'install' => array(), 'uninstall' => array(), ), 't

ConfigImporter::finish

protected ConfigImporter::finish(&$context) Finishes the batch. Parameters array|\ArrayAccess $context.: The batch context. File core/lib/Drupal/Core/Config/ConfigImporter.php, line 643 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code protected function finish(&$context) { $this->eventDispatcher->dispatch(ConfigEvents::IMPORT, new ConfigImporterEvent($this)); // The import is now complete. $this->lock->release(static::L

ConfigImporter::doSyncStep

public ConfigImporter::doSyncStep($sync_step, &$context) Calls a config import step. Parameters string|callable $sync_step: The step to do. Either a method on the ConfigImporter class or a callable. array $context: A batch context array. If the config importer is not running in a batch the only array key that is used is $context['finished']. A process needs to set $context['finished'] = 1 when it is done. Throws \InvalidArgumentException Exception thrown if the $sync_step can not be calle

ConfigImporter::createExtensionChangelist

protected ConfigImporter::createExtensionChangelist() Populates the extension change list. File core/lib/Drupal/Core/Config/ConfigImporter.php, line 357 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code protected function createExtensionChangelist() { // Create an empty changelist. $this->extensionChangelist = $this->getEmptyExtensionsProcessedList(); // Read the extensions information to determine changes. $current_extensions = $th