function _cck_phone_valid_cc_input in Phone Number 6
Same name and namespace in other branches
- 7 cck_phone.module \_cck_phone_valid_cc_input()
1 call to _cck_phone_valid_cc_input()
File
- ./
cck_phone.module, line 409 - Defines phone number fields for CCK. Provide some verifications on the phone numbers
Code
function _cck_phone_valid_cc_input($list, $cc) {
if (isset($list[$cc]) && $list[$cc] == $cc) {
return TRUE;
}
return FALSE;
}