function drupal_get_updaters in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/includes/common.inc \drupal_get_updaters()
Assembles the 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.
Return value
array The Drupal Updater class registry.
See also
5 calls to drupal_get_updaters()
- UpdateManagerInstall::submitForm in core/
modules/ update/ src/ Form/ UpdateManagerInstall.php - Form submission handler.
- Updater::getUpdaterFromDirectory in core/
lib/ Drupal/ Core/ Updater/ Updater.php - Determines which Updater class can operate on the given directory.
- UpdateReady::submitForm in core/
modules/ update/ src/ Form/ UpdateReady.php - Form submission handler.
- UpdateTestBase::setUp in core/
modules/ update/ src/ Tests/ UpdateTestBase.php - Sets up a Drupal site for running functional and integration tests.
- UpdateUploadTest::testUploadModule in core/
modules/ update/ src/ Tests/ UpdateUploadTest.php - Tests upload, extraction, and update of a module.
File
- core/
includes/ common.inc, line 1269 - Common functions that many Drupal modules will need to reference.
Code
function drupal_get_updaters() {
$updaters =& drupal_static(__FUNCTION__);
if (!isset($updaters)) {
$updaters = \Drupal::moduleHandler()
->invokeAll('updater_info');
\Drupal::moduleHandler()
->alter('updater_info', $updaters);
uasort($updaters, array(
'Drupal\\Component\\Utility\\SortArray',
'sortByWeightElement',
));
}
return $updaters;
}