You are here

function cck_phone_enable in Phone Number 6

Same name and namespace in other branches
  1. 7 cck_phone.install \cck_phone_enable()

Implementation of hook_enable().

Notify content module when this module is enabled.

File

./cck_phone.install, line 33
Defines phone number fields for CCK. Installation file

Code

function cck_phone_enable() {

  // TODO: Migration path for phone.module to cck_phone
  drupal_load('module', 'content');
  content_notify('enable', 'cck_phone');
}