protected function UpdateRegistry::getAvailableUpdateFunctions

protected UpdateRegistry::getAvailableUpdateFunctions()

Gets all available update functions.

Return value

callable[] A list of update functions.

File

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

Class

UpdateRegistry
Provides all and missing update implementations.

Namespace

Drupal\Core\Update

Code

protected function getAvailableUpdateFunctions() {
  $regexp = '/^(?<module>.+)_' . $this->updateType . '_(?<name>.+)$/';
  $functions = get_defined_functions();

  $updates = [];
  foreach (preg_grep('/_' . $this->updateType . '_/', $functions['user']) as $function) {
    // If this function is a module update function, add it to the list of
    // module updates.
    if (preg_match($regexp, $function, $matches)) {
      if (in_array($matches['module'], $this->enabledModules)) {
        $updates[] = $matches['module'] . '_' . $this->updateType . '_' . $matches['name'];
      }
    }
  }

  // Ensure that the update order is deterministic.
  sort($updates);
  return $updates;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Update!UpdateRegistry.php/function/UpdateRegistry::getAvailableUpdateFunctions/8.1.x