Portions created by the Initial Developer are Copyright (C) 2008-2012 the Initial Developer. All Rights Reserved. Contributor(s): Mark J Crane */ require_once "root.php"; require_once "includes/require.php"; require_once "includes/checkauth.php"; if (permission_exists('contacts_edit')) { //access granted } else { echo "access denied"; exit; } //action add or update if (isset($_REQUEST["id"])) { $action = "update"; $contact_phone_uuid = check_str($_REQUEST["id"]); } else { $action = "add"; } if (strlen($_GET["contact_uuid"]) > 0) { $contact_uuid = check_str($_GET["contact_uuid"]); } //get http post variables and set them to php variables if (count($_POST)>0) { $phone_type = check_str($_POST["phone_type"]); $phone_number = check_str($_POST["phone_number"]); $phone_extension = check_str($_POST["phone_extension"]); $phone_description = check_str($_POST["phone_description"]); //remove any phone number formatting $phone_number = preg_replace('{\D}', '', $phone_number); } if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) { $msg = ''; if ($action == "update") { $contact_phone_uuid = check_str($_POST["contact_phone_uuid"]); } //check for all required data //if (strlen($domain_uuid) == 0) { $msg .= "Please provide: domain_uuid
\n"; } //if (strlen($phone_type) == 0) { $msg .= "Please provide: Telephone Type.
\n"; } //if (strlen($phone_number) == 0) { $msg .= "Please provide: Telephone Number
\n"; } if (strlen($msg) > 0 && strlen($_POST["persistformvar"]) == 0) { require_once "includes/header.php"; require_once "includes/persistformvar.php"; echo "
\n"; echo "
\n"; echo $msg."
"; echo "
\n"; persistformvar($_POST); echo "
\n"; require_once "includes/footer.php"; return; } //add or update the database if ($_POST["persistformvar"] != "true") { if ($action == "add") { $contact_phone_uuid = uuid(); $sql = "insert into v_contact_phones "; $sql .= "("; $sql .= "domain_uuid, "; $sql .= "contact_uuid, "; $sql .= "contact_phone_uuid, "; $sql .= "phone_type, "; $sql .= "phone_number, "; $sql .= "phone_extension, "; $sql .= "phone_description "; $sql .= ")"; $sql .= "values "; $sql .= "("; $sql .= "'$domain_uuid', "; $sql .= "'$contact_uuid', "; $sql .= "'$contact_phone_uuid', "; $sql .= "'$phone_type', "; $sql .= "'$phone_number', "; $sql .= "'$phone_extension', "; $sql .= "'$phone_description' "; $sql .= ")"; $db->exec(check_sql($sql)); unset($sql); require_once "includes/header.php"; echo "\n"; echo "
\n"; echo "Add Complete\n"; echo "
\n"; require_once "includes/footer.php"; return; } //if ($action == "add") if ($action == "update") { $sql = "update v_contact_phones set "; $sql .= "contact_uuid = '$contact_uuid', "; $sql .= "phone_type = '$phone_type', "; $sql .= "phone_number = '$phone_number', "; $sql .= "phone_extension = '$phone_extension', "; $sql .= "phone_description = '$phone_description' "; $sql .= "where domain_uuid = '$domain_uuid'"; $sql .= "and contact_phone_uuid = '$contact_phone_uuid'"; $db->exec(check_sql($sql)); unset($sql); require_once "includes/header.php"; echo "\n"; echo "
\n"; echo "Update Complete\n"; echo "
\n"; require_once "includes/footer.php"; return; } //if ($action == "update") } //if ($_POST["persistformvar"] != "true") } //(count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) //pre-populate the form if (count($_GET)>0 && $_POST["persistformvar"] != "true") { $contact_phone_uuid = $_GET["id"]; $sql = "select * from v_contact_phones "; $sql .= "where domain_uuid = '$domain_uuid' "; $sql .= "and contact_phone_uuid = '$contact_phone_uuid' "; $prep_statement = $db->prepare(check_sql($sql)); $prep_statement->execute(); $result = $prep_statement->fetchAll(PDO::FETCH_NAMED); foreach ($result as &$row) { $phone_type = $row["phone_type"]; $phone_number = $row["phone_number"]; $phone_extension = $row["phone_extension"]; $phone_description = $row["phone_description"]; } unset ($prep_statement); } //show the header require_once "includes/header.php"; //show the content echo "
"; echo "\n"; echo "\n"; echo " "; echo " "; echo "
\n"; echo "
"; echo "
\n"; echo "
\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo " \n"; echo " \n"; echo " "; echo "
Contact Phone
\n"; //echo "Phone Numbers

\n"; echo "
\n"; echo " Type:\n"; echo "\n"; if (is_array($_SESSION["contact"]["phone_type"])) { sort($_SESSION["contact"]["phone_type"]); echo " \n"; } else { echo " \n"; } echo "
\n"; echo "Enter the phone type.\n"; echo "
\n"; echo " Phone Number:\n"; echo "\n"; echo " \n"; echo "
\n"; echo "Enter the phone number.\n"; echo "
\n"; echo " Extension:\n"; echo "\n"; echo " \n"; echo "
\n"; echo "Enter the extension.\n"; echo "
\n"; echo " Description:\n"; echo "\n"; echo " \n"; echo "
\n"; echo "Enter the description.\n"; echo "
\n"; echo " \n"; if ($action == "update") { echo " \n"; } echo " \n"; echo "
"; echo ""; echo "
"; echo "
"; //include the footer require_once "includes/footer.php"; ?>