function hook_updater_info

Provide information on Updaters (classes that can update Drupal).

Drupal\Core\Updater\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.

Return value

An associative array of information about the updater(s) being provided. This array is keyed by a unique identifier for each updater, and the values are subarrays that can contain the following keys:

  • class: The name of the PHP class which implements this updater.
  • name: Human-readable name of this updater.
  • weight: Controls what order the Updater classes are consulted to decide which one should handle a given task. When an update task is being run, the system will loop through all the Updater classes defined in this registry in weight order and let each class respond to the task and decide if each Updater wants to handle the task. In general, this doesn't matter, but if you need to override an existing Updater, make sure your Updater has a lighter weight so that it comes first.

See also

drupal_get_updaters()

hook_updater_info_alter()

Related topics

1 function implements hook_updater_info()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

system_updater_info in drupal/core/modules/system/system.module
Implements hook_updater_info().
1 invocation of hook_updater_info()
drupal_get_updaters in drupal/core/includes/common.inc
Assembles the Drupal Updater registry.

File

drupal/core/modules/system/system.api.php, line 3677
Hooks provided by Drupal core and the System module.

Code

function hook_updater_info() {
  return array(
    'module' => array(
      'class' => 'Drupal\\Core\\Updater\\Module',
      'name' => t('Update modules'),
      'weight' => 0,
    ),
    'theme' => array(
      'class' => 'Drupal\\Core\\Updater\\Theme',
      'name' => t('Update themes'),
      'weight' => 0,
    ),
  );
}