function hook_update_last_removed
Same name in other branches
- 9 core/lib/Drupal/Core/Extension/module.api.php \hook_update_last_removed()
- 8.9.x core/lib/Drupal/Core/Extension/module.api.php \hook_update_last_removed()
- 10 core/lib/Drupal/Core/Extension/module.api.php \hook_update_last_removed()
- 11.x core/lib/Drupal/Core/Extension/module.api.php \hook_update_last_removed()
Return a number which is no longer available as hook_update_N().
If you remove some update functions from your mymodule.install file, you should notify Drupal of those missing functions. This way, Drupal can ensure that no update is accidentally skipped.
Implementations of this hook should be placed in a mymodule.install file in the same directory as mymodule.module.
Return value
An integer, corresponding to hook_update_N() which has been removed from mymodule.install.
See also
Related topics
1 function implements hook_update_last_removed()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- system_update_last_removed in modules/
system/ system.install
2 invocations of hook_update_last_removed()
- module_enable in includes/
module.inc - Enables or installs a given list of modules.
- update_get_update_list in includes/
update.inc - Returns a list of all the pending database updates.
File
-
modules/
system/ system.api.php, line 3607
Code
function hook_update_last_removed() {
// We've removed the 5.x-1.x version of mymodule, including database updates.
// The next update function is mymodule_update_5200().
return 5103;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.