You are here

function location_cck_enable in Location 6.3

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

Implementation of hook_enable().

File

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

Code

function location_cck_enable() {

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