You are here

function format_pk_phone_number in Phone 6

Same name and namespace in other branches
  1. 7 include/phone.pk.inc \format_pk_phone_number()

Formatting for Pakistan Phone Numbers.

Parameters

string $phonenumber:

Return value

string Returns a string containting the phone number with some formatting.

File

./phone.pk.inc, line 36
CCK Field for Pakistanese phone numbers.

Code

function format_pk_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;
}