You are here

function pm_uninstall in Drupal PM (Project Management) 7.3

Same name and namespace in other branches
  1. 8 pm.install \pm_uninstall()
  2. 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);
}