function UpdateRegistry::__construct

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/Update/UpdateRegistry.php \Drupal\Core\Update\UpdateRegistry::__construct()
  2. 10 core/lib/Drupal/Core/Update/UpdateRegistry.php \Drupal\Core\Update\UpdateRegistry::__construct()
  3. 9 core/lib/Drupal/Core/Update/UpdateRegistry.php \Drupal\Core\Update\UpdateRegistry::__construct()
  4. 8.9.x core/lib/Drupal/Core/Update/UpdateRegistry.php \Drupal\Core\Update\UpdateRegistry::__construct()

Constructs a new UpdateRegistry.

Parameters

string $root: The app root.

string $sitePath: The site path.

array $module_list: An associative array whose keys are the names of installed modules.

\Drupal\Core\KeyValueStore\KeyValueStoreInterface $keyValue: The key value store.

\Drupal\Core\Extension\ThemeHandlerInterface $theme_handler: The theme handler.

string $updateType: The used update name.

File

core/lib/Drupal/Core/Update/UpdateRegistry.php, line 64

Class

UpdateRegistry
Provides all and missing update implementations.

Namespace

Drupal\Core\Update

Code

public function __construct(protected $root, protected $sitePath, array $module_list, protected KeyValueStoreInterface $keyValue, ThemeHandlerInterface $theme_handler, protected string $updateType = 'post_update') {
  $this->enabledExtensions = array_merge(array_keys($module_list), array_keys($theme_handler->listInfo()));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.