function _cck_phone_valid_input in Phone Number 6
Same name and namespace in other branches
- 7 cck_phone.module \_cck_phone_valid_input()
1 call to _cck_phone_valid_input()
File
- ./
cck_phone.module, line 396 - Defines phone number fields for CCK. Provide some verifications on the phone numbers
Code
function _cck_phone_valid_input($input) {
// lenient checking, as long as don't have invalid phone number character
$regex = '/^
[\\s.()-]* # optional separator
(?: # }
\\d # } 4-15 digits number
[\\s.()-]* # } each followed by optional separator
){' . CCK_PHONE_PHONE_MIN_LENGTH . ',' . CCK_PHONE_PHONE_MAX_LENGTH . '} # }
$/x';
return preg_match($regex, $input);
}