You are here

function pmticket_uninstall in Drupal PM (Project Management) 7.2

Same name and namespace in other branches
  1. 8 pmticket/pmticket.install \pmticket_uninstall()
  2. 7.3 pmticket/pmticket.install \pmticket_uninstall()
  3. 7 pmticket/pmticket.install \pmticket_uninstall()

Implements hook_uninstall().

File

pmticket/pmticket.install, line 37
Installation functions for the Project Management project module.

Code

function pmticket_uninstall() {
  variable_del('pmpermission_field_parent_reference_for_pmticket');
  variable_del('pmpermission_node_pmticket_enabled');

  // Clean up field instances (and field) and its data.
  module_load_include('inc', 'pmticket', 'includes/pmticket.field_instance');
  module_load_include('inc', 'pmticket', 'includes/pmticket.field_base');
  $declared_field_bases = pmticket_default_field_bases();
  $declared_field_instances = pmticket_default_field_instances();
  $field_instance = field_info_instances('node', 'pmticket');
  foreach ($declared_field_instances as $declared_instance) {
    $instance = $field_instance[$declared_instance['field_name']];
    if ($instance) {

      // Only delete field base if declared by this module.
      $delete_field_base = isset($declared_field_bases[$declared_instance['field_name']]);
      field_delete_instance($instance, $delete_field_base);
    }
  }
}