function _cck_phone_valid_cc_input in Phone Number 7
Same name and namespace in other branches
- 6 cck_phone.module \_cck_phone_valid_cc_input()
2 calls to _cck_phone_valid_cc_input()
- cck_phone_phone_number_validate in ./
cck_phone.module - An #element_validate callback for the phone_number element.
- _cck_phone_validate in ./
cck_phone.module
File
- ./
cck_phone.module, line 458 - 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;
}