Portions created by the Initial Developer are Copyright (C) 2008-2018 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_address_edit') || permission_exists('contact_address_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_address_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) { $address_type = check_str($_POST["address_type"]); $address_label = check_str($_POST["address_label"]); $address_label_custom = check_str($_POST["address_label_custom"]); $address_street = check_str($_POST["address_street"]); $address_extended = check_str($_POST["address_extended"]); $address_community = check_str($_POST["address_community"]); $address_locality = check_str($_POST["address_locality"]); $address_region = check_str($_POST["address_region"]); $address_postal_code = check_str($_POST["address_postal_code"]); $address_country = check_str($_POST["address_country"]); $address_latitude = check_str($_POST["address_latitude"]); $address_longitude = check_str($_POST["address_longitude"]); $address_primary = check_str($_POST["address_primary"]); $address_description = check_str($_POST["address_description"]); //use custom label if set $address_label = ($address_label_custom != '') ? $address_label_custom : $address_label; } //process the form data if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) { //set the uuid if ($action == "update") { $contact_address_uuid = check_str($_POST["contact_address_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 ($address_primary) { $sql = "update v_contact_addresses set address_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_address_uuid = uuid(); $sql = "insert into v_contact_addresses "; $sql .= "("; $sql .= "domain_uuid, "; $sql .= "contact_uuid, "; $sql .= "contact_address_uuid, "; $sql .= "address_type, "; $sql .= "address_label, "; $sql .= "address_street, "; $sql .= "address_extended, "; $sql .= "address_community, "; $sql .= "address_locality, "; $sql .= "address_region, "; $sql .= "address_postal_code, "; $sql .= "address_country, "; $sql .= "address_latitude, "; $sql .= "address_longitude, "; $sql .= "address_primary, "; $sql .= "address_description "; $sql .= ")"; $sql .= "values "; $sql .= "("; $sql .= "'".$_SESSION['domain_uuid']."', "; $sql .= "'".$contact_uuid."', "; $sql .= "'".$contact_address_uuid."', "; $sql .= "'".$address_type."', "; $sql .= "'".$address_label."', "; $sql .= "'".$address_street."', "; $sql .= "'".$address_extended."', "; $sql .= "'".$address_community."', "; $sql .= "'".$address_locality."', "; $sql .= "'".$address_region."', "; $sql .= "'".$address_postal_code."', "; $sql .= "'".$address_country."', "; $sql .= "'".$address_latitude."', "; $sql .= "'".$address_longitude."', "; $sql .= (($address_primary) ? 1 : 0).", "; $sql .= "'".$address_description."' "; $sql .= ")"; $db->exec(check_sql($sql)); unset($sql); message::add($text['message-add']); header("Location: contact_edit.php?id=".$contact_uuid); return; } //if ($action == "add") if ($action == "update") { $sql = "update v_contact_addresses set "; $sql .= "contact_uuid = '".$contact_uuid."', "; $sql .= "address_type = '".$address_type."', "; $sql .= "address_label = '".$address_label."', "; $sql .= "address_street = '".$address_street."', "; $sql .= "address_extended = '".$address_extended."', "; $sql .= "address_community = '".$address_community."', "; $sql .= "address_locality = '".$address_locality."', "; $sql .= "address_region = '".$address_region."', "; $sql .= "address_postal_code = '".$address_postal_code."', "; $sql .= "address_country = '".$address_country."', "; $sql .= "address_latitude = '".$address_latitude."', "; $sql .= "address_longitude = '".$address_longitude."', "; $sql .= "address_primary = ".(($address_primary) ? 1 : 0).", "; $sql .= "address_description = '".$address_description."' "; $sql .= "where domain_uuid = '".$_SESSION['domain_uuid']."' "; $sql .= "and contact_address_uuid = '".$contact_address_uuid."'"; $db->exec(check_sql($sql)); unset($sql); message::add($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_address_uuid = $_GET["id"]; $sql = "select * from v_contact_addresses "; $sql .= "where domain_uuid = '".$_SESSION['domain_uuid']."' "; $sql .= "and contact_address_uuid = '$contact_address_uuid' "; $prep_statement = $db->prepare(check_sql($sql)); $prep_statement->execute(); $result = $prep_statement->fetchAll(PDO::FETCH_NAMED); foreach ($result as &$row) { $address_type = $row["address_type"]; $address_label = $row["address_label"]; $address_street = $row["address_street"]; $address_extended = $row["address_extended"]; $address_community = $row["address_community"]; $address_locality = $row["address_locality"]; $address_region = $row["address_region"]; $address_postal_code = $row["address_postal_code"]; $address_country = $row["address_country"]; $address_latitude = $row["address_latitude"]; $address_longitude = $row["address_longitude"]; $address_primary = $row["address_primary"]; $address_description = $row["address_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_addresses-edit']; } else if ($action == "add") { $document['title'] = $text['title-contact_addresses-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_addresses-edit']; } else if ($action == "add") { echo $text['header-contact_addresses-add']; } echo ""; echo " "; echo " \n"; echo "
\n"; if ($action == "update") { echo $text['description-contact_addresses-edit']; } else if ($action == "add") { echo $text['description-contact_addresses-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 "\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 "\n"; echo "\n"; echo " \n"; echo " \n"; echo " "; echo "
\n"; echo " ".$text['label-address_label']."\n"; echo "\n"; if (is_array($_SESSION["contact"]["address_label"])) { sort($_SESSION["contact"]["address_label"]); foreach($_SESSION["contact"]["address_label"] as $row) { $address_label_options[] = ""; } $address_label_found = (in_array($address_label, $_SESSION["contact"]["address_label"])) ? true : false; } else { $selected[$address_label] = "selected"; $default_labels[] = $text['option-work']; $default_labels[] = $text['option-home']; $default_labels[] = $text['option-mailing']; $default_labels[] = $text['option-physical']; $default_labels[] = $text['option-shipping']; $default_labels[] = $text['option-billing']; $default_labels[] = $text['option-other']; foreach ($default_labels as $default_label) { $address_label_options[] = ""; } $address_label_found = (in_array($address_label, $default_labels)) ? true : false; } echo " \n"; echo " \n"; echo " \n"; echo "
\n"; echo $text['description-address_label']."\n"; echo "
\n"; echo " ".$text['label-address_type']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-address_type']."\n"; echo "
\n"; echo " ".$text['label-address_address']."\n"; echo "\n"; echo "
\n"; echo " \n"; echo "
\n"; echo $text['description-address_address']."\n"; echo "
\n"; echo " ".$text['label-address_community']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-address_community']."\n"; echo "
\n"; echo " ".$text['label-address_locality']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-address_locality']."\n"; echo "
\n"; echo " ".$text['label-address_region']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-address_region']."\n"; echo "
\n"; echo " ".$text['label-address_postal_code']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-address_postal_code']."\n"; echo "
\n"; echo " ".$text['label-address_country']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-address_country']."\n"; echo "
\n"; echo " ".$text['label-address_latitude']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-address_latitude']."\n"; echo "
\n"; echo " ".$text['label-address_longitude']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-address_longitude']."\n"; echo "
\n"; echo " ".$text['label-primary']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-address_primary']."\n"; echo "
\n"; echo " ".$text['label-address_description']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-address_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"; ?>