function format_cl_phone_number in Phone 7
Same name and namespace in other branches
- 6 phone.cl.inc \format_cl_phone_number()
Formatting for Chili Phone Numbers.
Parameters
string $phonenumber:
Return value
string Returns a string containting the phone number with some formatting.
File
- include/
phone.cl.inc, line 35 - CCK Field for Chili phone numbers.
Code
function format_cl_phone_number($phonenumber, $field) {
//$phonenumber = trim($phonenumber);
// do some formatting on the phone number
/* ==> to be done ==> add the country code
if ($field['phone_country_code']) {
if ($matches[1] != "+39") {
$phonenumber = "+39" . " " . $phonenumber;
}
}
*/
return $phonenumber;
}