hook_uninstall()

This hook will remove any tables or variables that the module has set. The uninstall hook will fire when the module gets uninstalled.

Parameters

None

Return value

None

Usage sample

function videopage_uninstall() {
drupal_uninstall_schema(‘videoshows’);
variable_del(‘video_types’);
}