You are here

function cck_phone_init in Phone Number 6

Same name and namespace in other branches
  1. 7 cck_phone.module \cck_phone_init()

Implementation of hook_init(). This hook is called on module initialization.

File

./cck_phone.module, line 22
Defines phone number fields for CCK. Provide some verifications on the phone numbers

Code

function cck_phone_init() {

  // Token module support.
  if (module_exists('token')) {
    module_load_include('inc', 'cck_phone', 'cck_phone.token');
  }
}