function pm_uninstall in Drupal PM (Project Management) 8
Same name and namespace in other branches
- 7.3 pm.install \pm_uninstall()
- 7 pm.install \pm_uninstall()
Implements hook_uninstall().
File
- ./
pm.install, line 10 - Install, update and uninstall functions for the Project Management module.
Code
function pm_uninstall() {
module_load_include('inc', 'pm', 'includes/pm.install');
$module = 'pm';
// Delete variables used by this module.
pm_uninstall_variables($module);
}