drupal_uninstall_module
- Versions
- 5 – 6
drupal_uninstall_module($module)
Calls the uninstall function and updates the system table for a given module.
Parameters
$module The module to uninstall.
Code
includes/install.inc, line 360
<?php
function drupal_uninstall_module($module) {
module_load_install($module);
module_invoke($module, 'uninstall');
drupal_set_installed_schema_version($module, SCHEMA_UNINSTALLED);
}
?>Login or register to post comments 