hook_update_last_removed

Definition

hook_update_last_removed()
contributions/docs/developer/hooks/install.php, line 237

Description

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.

See also

hook_update_N()

Return value

An integer, corresponding to hook_update_N() which has been removed from mymodule.install.

Related topics

Namesort iconDescription
HooksAllow modules to interact with the Drupal core.

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;
}