You are here

function location_cck_disable in Location 6.3

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

Implementation of hook_disable().

File

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

Code

function location_cck_disable() {

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