function pmnote_uninstall in Drupal PM (Project Management) 7.2
Same name and namespace in other branches
- 8 pmnote/pmnote.install \pmnote_uninstall()
- 7.3 pmnote/pmnote.install \pmnote_uninstall()
- 7 pmnote/pmnote.install \pmnote_uninstall()
Implements hook_uninstall().
File
- pmnote/
pmnote.install, line 28 - Functions for the PM Note module.
Code
function pmnote_uninstall() {
variable_del('pmpermission_field_parent_reference_for_pmnote');
variable_del('pmpermission_node_pmnote_enabled');
// Clean up field instances (and field) and its data.
module_load_include('inc', 'pmnote', 'includes/pmnote.field_instance');
module_load_include('inc', 'pmnote', 'includes/pmnote.field_base');
$declared_field_bases = pmnote_default_field_bases();
$declared_field_instances = pmnote_default_field_instances();
$field_instance = field_info_instances('node', 'pmnote');
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);
}
}
}