drupal_get_updaters()Drupal Updater registry.
An Updater is a class that knows how to update various parts of the Drupal file system, for example to update modules that have newer releases, or to install a new theme.
hook_updater_info()
@see hook_updater_info_alter()
Returns the Drupal Updater class registry.
includes/common.inc, line 6574
<?php
function drupal_get_updaters() {
$updaters = &drupal_static(__FUNCTION__);
if (!isset($updaters)) {
$updaters = module_invoke_all('updater_info');
drupal_alter('updater_info', $updaters);
uasort($updaters, 'drupal_sort_weight');
}
return $updaters;
}
?>