Portions created by the Initial Developer are Copyright (C) 2008-2020 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 "; $parameters['domain_uuid'] = $domain_uuid; $parameters['contact_uuid'] = $contact_uuid; $database = new database; $contact_phones = $database->select($sql, $parameters, 'all'); unset($sql, $parameters); //show if exists if (is_array($contact_phones) && @sizeof($contact_phones) != 0) { //javascript function: send_cmd echo "\n"; //show the content echo "
\n"; echo "
".$text['label-phone_numbers']."
\n"; echo "
\n"; echo "
\n"; echo "\n"; echo "\n"; if (permission_exists('contact_phone_delete')) { echo " \n"; } echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; if (permission_exists('contact_phone_edit') && $_SESSION['theme']['list_row_edit_button']['boolean'] == 'true') { echo " \n"; } echo "\n"; if (is_array($contact_phones) && @sizeof($contact_phones) != 0) { $x = 0; foreach ($contact_phones as $row) { if (permission_exists('contact_phone_edit')) { $list_row_url = "contact_phone_edit.php?contact_uuid=".urlencode($row['contact_uuid'])."&id=".urlencode($row['contact_phone_uuid']); } echo "\n"; if (permission_exists('contact_phone_delete')) { echo " \n"; } echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; if (permission_exists('contact_phone_edit') && $_SESSION['theme']['list_row_edit_button']['boolean'] == 'true') { echo " \n"; } echo "\n"; $x++; } unset($contact_phones); } echo "
\n"; echo " \n"; echo " ".$text['label-phone_label']."".$text['label-phone_number']."".$text['label-phone_type']."".$text['label-phone_tools']."".$text['label-phone_description']." 
\n"; echo " \n"; echo " \n"; echo " ".($row['phone_label'] == strtolower($row['phone_label']) ? ucwords($row['phone_label']) : $row['phone_label'])." ".($row['phone_primary'] ? " " : null)."\n"; if ($row['phone_type_voice']) { $phone_types[] = ""; } if ($row['phone_type_fax']) { $phone_types[] = ""; } if ($row['phone_type_video']) { $phone_types[] = ""; } if ($row['phone_type_text']) { $phone_types[] = ""; } if (is_array($phone_types)) { echo " ".implode(" ", $phone_types)."\n"; } unset($phone_types); echo " ".escape($row['phone_description'])." \n"; echo button::create(['type'=>'button','title'=>$text['button-edit'],'icon'=>$_SESSION['theme']['button_icon_edit'],'link'=>$list_row_url]); echo "
\n"; echo "
\n"; } ?>