You are here

function location_cck_uninstall in Location 6.3

Same name and namespace in other branches
  1. 7.4 contrib/location_cck/location_cck.install \location_cck_uninstall()

Implementation of hook_uninstall().

File

contrib/location_cck/location_cck.install, line 20
Module installation/uninstallation hooks.

Code

function location_cck_uninstall() {

  // Notify content module when this module is uninstalled.
  drupal_load('module', 'content');
  content_notify('uninstall', 'location_cck');
}