hook_modules_uninstalled

Versions
mediamosa-21
hook_modules_uninstalled($modules)

Perform necessary actions after modules are uninstalled.

This function differs from hook_uninstall() as it gives all other modules a chance to perform actions when a module is uninstalled, whereas hook_uninstall() will only be called on the module actually being uninstalled.

It is recommended that you implement this module if your module stores data that may have been set by other modules.

See also

hook_uninstall()

Parameters

$modules An array of the uninstalled modules.

Related topics

Code

modules/system/system.api.php, line 1535

<?php
function hook_modules_uninstalled($modules) {
  foreach ($modules as $module) {
    db_delete('mymodule_table')
      ->condition('module', $module)
      ->execute();
  }
  mymodule_cache_rebuild();
}
?>