public function Module::getSchemaUpdates in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Updater/Module.php \Drupal\Core\Updater\Module::getSchemaUpdates()
- 9 core/lib/Drupal/Core/Updater/Module.php \Drupal\Core\Updater\Module::getSchemaUpdates()
Returns available database schema updates once a new version is installed.
Return value
array
File
- core/
lib/ Drupal/ Core/ Updater/ Module.php, line 83
Class
- Module
- Defines a class for updating modules using Drupal\Core\FileTransfer\FileTransfer classes via authorize.php.
Namespace
Drupal\Core\UpdaterCode
public function getSchemaUpdates() {
require_once DRUPAL_ROOT . '/core/includes/install.inc';
require_once DRUPAL_ROOT . '/core/includes/update.inc';
if (!self::canUpdate($this->name)) {
return [];
}
\Drupal::moduleHandler()
->loadInclude($this->name, 'install');
if (!\Drupal::service('update.update_hook_registry')
->getAvailableUpdates($this->name)) {
return [];
}
$modules_with_updates = update_get_update_list();
if ($updates = $modules_with_updates[$this->name]) {
if ($updates['start']) {
return $updates['pending'];
}
}
return [];
}