You are here

function geolocation_disable in Geolocation Field 6

Implementation of hook_disable().

Notify content module when this module is disabled.

File

./geolocation.install, line 37
Implementation of hook_install().

Code

function geolocation_disable() {
  drupal_load('module', 'content');
  content_notify('disable', 'geolocation');
}