protected function ConfigImporter::processExtensions in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Config/ConfigImporter.php \Drupal\Core\Config\ConfigImporter::processExtensions()
Processes extensions as a batch operation.
Parameters
array $context.: The batch context.
File
- core/
lib/ Drupal/ Core/ Config/ ConfigImporter.php, line 550 - Contains \Drupal\Core\Config\ConfigImporter.
Class
- ConfigImporter
- Defines a configuration importer.
Namespace
Drupal\Core\ConfigCode
protected function processExtensions(array &$context) {
$operation = $this
->getNextExtensionOperation();
if (!empty($operation)) {
$this
->processExtension($operation['type'], $operation['op'], $operation['name']);
$context['message'] = t('Synchronizing extensions: @op @name.', array(
'@op' => $operation['op'],
'@name' => $operation['name'],
));
$processed_count = count($this->processedExtensions['module']['install']) + count($this->processedExtensions['module']['uninstall']);
$processed_count += count($this->processedExtensions['theme']['uninstall']) + count($this->processedExtensions['theme']['install']);
$context['finished'] = $processed_count / $this->totalExtensionsToProcess;
}
else {
$context['finished'] = 1;
}
}