function cck_phone_elements in Phone Number 6
Implementation of FAPI hook_elements().
File
- ./
cck_phone.module, line 605 - Defines phone number fields for CCK. Provide some verifications on the phone numbers
Code
function cck_phone_elements() {
return array(
'phone_number' => array(
'#input' => TRUE,
'#process' => array(
'cck_phone_process',
),
'#autocomplete_path' => FALSE,
),
);
}