Portions created by the Initial Developer are Copyright (C) 2008-2012 the Initial Developer. All Rights Reserved. Contributor(s): Mark J Crane Luis Daniel Lucio Quiroz */ require_once "root.php"; require_once "resources/require.php"; require_once "resources/check_auth.php"; if (permission_exists('contact_url_edit') || permission_exists('contact_url_add')) { //access granted } else { echo "access denied"; exit; } //add multi-lingual support $language = new text; $text = $language->get(); //action add or update if (isset($_REQUEST["id"])) { $action = "update"; $contact_url_uuid = check_str($_REQUEST["id"]); } else { $action = "add"; } //get the contact uuid 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) { $url_label = check_str($_POST["url_label"]); $url_label_custom = check_str($_POST["url_label_custom"]); $url_address = check_str($_POST["url_address"]); $url_primary = check_str($_POST["url_primary"]); $url_description = check_str($_POST["url_description"]); //use custom label if set $url_label = ($url_label_custom != '') ? $url_label_custom : $url_label; } //process the form data if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) { //set the uuid if ($action == "update") { $contact_url_uuid = check_str($_POST["contact_url_uuid"]); } //check for all required data $msg = ''; if (strlen($msg) > 0 && strlen($_POST["persistformvar"]) == 0) { require_once "resources/header.php"; require_once "resources/persist_form_var.php"; echo "
\n"; echo "
\n"; echo $msg."
"; echo "
\n"; persistformvar($_POST); echo "
\n"; require_once "resources/footer.php"; return; } //add or update the database if ($_POST["persistformvar"] != "true") { //update last modified $sql = "update v_contacts set "; $sql .= "last_mod_date = now(), "; $sql .= "last_mod_user = '".$_SESSION['username']."' "; $sql .= "where domain_uuid = '".$domain_uuid."' "; $sql .= "and contact_uuid = '".$contact_uuid."' "; $db->exec(check_sql($sql)); unset($sql); //if primary, unmark other primary numbers if ($url_primary) { $sql = "update v_contact_urls set url_primary = 0 "; $sql .= "where domain_uuid = '".$domain_uuid."' "; $sql .= "and contact_uuid = '".$contact_uuid."' "; $db->exec(check_sql($sql)); unset($sql); } if ($action == "add") { $contact_url_uuid = uuid(); $sql = "insert into v_contact_urls "; $sql .= "("; $sql .= "domain_uuid, "; $sql .= "contact_uuid, "; $sql .= "contact_url_uuid, "; $sql .= "url_label, "; $sql .= "url_address, "; $sql .= "url_primary, "; $sql .= "url_description "; $sql .= ")"; $sql .= "values "; $sql .= "("; $sql .= "'".$_SESSION['domain_uuid']."', "; $sql .= "'".$contact_uuid."', "; $sql .= "'".$contact_url_uuid."', "; $sql .= "'".$url_label."', "; $sql .= "'".$url_address."', "; $sql .= (($url_primary) ? 1 : 0).", "; $sql .= "'".$url_description."' "; $sql .= ")"; $db->exec(check_sql($sql)); unset($sql); $_SESSION["message"] = $text['message-add']; header("Location: contact_edit.php?id=".$contact_uuid); return; } //if ($action == "add") if ($action == "update") { $sql = "update v_contact_urls set "; $sql .= "contact_uuid = '".$contact_uuid."', "; $sql .= "url_label = '".$url_label."', "; $sql .= "url_address = '".$url_address."', "; $sql .= "url_primary = ".(($url_primary) ? 1 : 0).", "; $sql .= "url_description = '".$url_description."' "; $sql .= "where domain_uuid = '".$_SESSION['domain_uuid']."' "; $sql .= "and contact_url_uuid = '".$contact_url_uuid."'"; $db->exec(check_sql($sql)); unset($sql); $_SESSION["message"] = $text['message-update']; header("Location: contact_edit.php?id=".$contact_uuid); 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_url_uuid = $_GET["id"]; $sql = "select * from v_contact_urls "; $sql .= "where domain_uuid = '".$_SESSION['domain_uuid']."' "; $sql .= "and contact_url_uuid = '".$contact_url_uuid."' "; $prep_statement = $db->prepare(check_sql($sql)); $prep_statement->execute(); $result = $prep_statement->fetchAll(PDO::FETCH_NAMED); foreach ($result as &$row) { $url_label = $row["url_label"]; $url_address = $row["url_address"]; $url_primary = $row["url_primary"]; $url_description = $row["url_description"]; break; //limit to 1 row } unset ($prep_statement); } //show the header require_once "resources/header.php"; if ($action == "update") { $document['title'] = $text['title-contact_url-edit']; } else if ($action == "add") { $document['title'] = $text['title-contact_url-add']; } //javascript to toggle input/select boxes echo ""; //show the content echo "
\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "
"; if ($action == "update") { echo $text['header-contact_url-edit']; } else if ($action == "add") { echo $text['header-contact_url-add']; } echo ""; echo " "; echo " \n"; echo "
\n"; if ($action == "update") { echo $text['description-contact_url-edit']; } else if ($action == "add") { echo $text['description-contact_url-add']; } 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 "
\n"; echo " ".$text['label-url_label']."\n"; echo "\n"; if (is_array($_SESSION["contact"]["url_label"])) { sort($_SESSION["contact"]["url_label"]); foreach($_SESSION["contact"]["url_label"] as $row) { $url_label_options[] = ""; } $url_label_found = (in_array($url_label, $_SESSION["contact"]["url_label"])) ? true : false; } else { $selected[$url_label] = "selected"; $default_labels[] = $text['option-work']; $default_labels[] = $text['option-personal']; $default_labels[] = $text['option-other']; foreach ($default_labels as $default_label) { $url_label_options[] = ""; } $url_label_found = (in_array($url_label, $default_labels)) ? true : false; } echo " \n"; echo " \n"; echo " \n"; echo "
\n"; echo $text['description-url_label']."\n"; echo "
\n"; echo " ".$text['label-url_address']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-url_address']."\n"; echo "
\n"; echo " ".$text['label-primary']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-url_primary']."\n"; echo "
\n"; echo " ".$text['label-url_description']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-url_description']."\n"; echo "
\n"; echo "
\n"; echo " \n"; if ($action == "update") { echo " \n"; } echo " \n"; echo "
"; echo "

"; echo "
"; //include the footer require_once "resources/footer.php"; ?>