Portions created by the Initial Developer are Copyright (C) 2008-2018 the Initial Developer. All Rights Reserved. Contributor(s): Mark J Crane */ //includes require_once "root.php"; require_once "resources/require.php"; require_once "resources/check_auth.php"; //check permissions if (permission_exists('contact_phone_view')) { //access granted } else { echo "access denied"; exit; } //get the contact list $sql = "select * from v_contact_phones "; $sql .= "where domain_uuid = '$domain_uuid' "; $sql .= "and contact_uuid = '$contact_uuid' "; $sql .= "order by phone_primary desc, phone_label asc "; $prep_statement = $db->prepare(check_sql($sql)); $prep_statement->execute(); $contact_phones = $prep_statement->fetchAll(PDO::FETCH_NAMED); unset ($prep_statement, $sql); //set the row style $c = 0; $row_style["0"] = "row_style0"; $row_style["1"] = "row_style1"; //javascript function: send_cmd echo "\n"; //show the content echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "
".$text['label-phone_numbers']." 
\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; if (is_array($contact_phones)) { foreach($contact_phones as $row) { if (permission_exists('contact_phone_edit')) { $tr_link = "href='contact_phone_edit.php?contact_uuid=".escape($row['contact_uuid'])."&id=".escape($row['contact_phone_uuid'])."'"; } echo "\n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo "\n"; $c = ($c) ? 0 : 1; } //end foreach unset($sql, $contact_phones); } //end if results echo "
".$text['label-phone_label']."".$text['label-phone_number']."".$text['label-phone_type']."".$text['label-phone_tools']."".$text['label-phone_description'].""; if (permission_exists('contact_phone_add')) { echo "$v_link_label_add"; } echo "
".(($row['phone_label'] == strtolower($row['phone_label'])) ? ucwords($row['phone_label']) : $row['phone_label'])." \n"; if ($row['phone_type_voice']) { $phone_types[] = $text['label-voice']; } if ($row['phone_type_fax']) { $phone_types[] = $text['label-fax']; } if ($row['phone_type_video']) { $phone_types[] = $text['label-video']; } if ($row['phone_type_text']) { $phone_types[] = $text['label-text']; } if (is_array($phone_types)) { echo " ".implode(", ", $phone_types)."\n"; } unset($phone_types); echo " ".escape($row['phone_description'])." "; if (permission_exists('contact_phone_edit')) { echo "$v_link_label_edit"; } if (permission_exists('contact_phone_delete')) { echo "$v_link_label_delete"; } echo "
"; ?>