You are here

taxonomy_dupecheck.install in Taxonomy dupecheck 7

Same filename and directory in other branches
  1. 6 taxonomy_dupecheck.install

Install, update and uninstall functions for the Taxonomy Dupecheck module.

File

taxonomy_dupecheck.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the Taxonomy Dupecheck module.
 */

/**
 * Implements hook_uninstall().
 */
function taxonomy_dupecheck_uninstall() {
  variable_del('taxonomy_dupecheck_types');
  variable_del('taxonomy_dupecheck_case_sensitive');
}

/**
 * Clear menu cache to match new configuration place
 */
function taxonomy_dupecheck_update_7001() {
  cache_clear_all(NULL, 'cache_menu');
}

Functions

Namesort descending Description
taxonomy_dupecheck_uninstall Implements hook_uninstall().
taxonomy_dupecheck_update_7001 Clear menu cache to match new configuration place