You are here

function cck_phone_field_info in Phone Number 6

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

Implementation of hook_field_info().

File

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

Code

function cck_phone_field_info() {
  return array(
    'phone_number' => array(
      'label' => t('Phone number'),
      'description' => t('Store a number and country code in the database to assemble a phone number.'),
    ),
  );
}