function UpdateRegistry::getAvailableUpdateFunctions

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

Gets all available update functions.

Return value

callable[] A list of update functions.

2 calls to UpdateRegistry::getAvailableUpdateFunctions()
UpdateRegistry::getPendingUpdateFunctions in core/lib/Drupal/Core/Update/UpdateRegistry.php
Find all update functions that haven't been executed.
UpdateRegistry::getUpdateFunctions in core/lib/Drupal/Core/Update/UpdateRegistry.php
Returns all available updates for a given extension.

File

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

Class

UpdateRegistry
Provides all and missing update implementations.

Namespace

Drupal\Core\Update

Code

protected function getAvailableUpdateFunctions() {
    $regexp = '/^(?<extension>.+)_' . $this->updateType . '_(?<name>.+)$/';
    $functions = get_defined_functions();
    $updates = [];
    foreach (preg_grep('/_' . $this->updateType . '_/', $functions['user']) as $function) {
        // If this function is an extension update function, add it to the list of
        // extension updates.
        if (preg_match($regexp, $function, $matches)) {
            if (in_array($matches['extension'], $this->enabledExtensions)) {
                $function_name = $matches['extension'] . '_' . $this->updateType . '_' . $matches['name'];
                if ($this->updateType === 'post_update') {
                    $removed = array_keys($this->getRemovedPostUpdates($matches['extension']));
                    if (array_search($function_name, $removed) !== FALSE) {
                        throw new RemovedPostUpdateNameException(sprintf('The following update is specified as removed in hook_removed_post_updates() but still exists in the code base: %s', $function_name));
                    }
                }
                $updates[] = $function_name;
            }
        }
    }
    // Ensure that the update order is deterministic.
    sort($updates);
    return $updates;
}

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