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 "resources/require.php"; require_once "resources/check_auth.php"; if (permission_exists('contact_note_edit') || permission_exists('contact_note_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_note_uuid = check_str($_REQUEST["id"]); } else { $action = "add"; } //get the primary id for the contact 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) { $contact_note = check_str($_POST["contact_note"]); $last_mod_date = check_str($_POST["last_mod_date"]); $last_mod_user = check_str($_POST["last_mod_user"]); } //process the form data if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) { //get the primary id for the contact note if ($action == "update") { $contact_note_uuid = check_str($_POST["contact_note_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); //add the note if ($action == "add") { $contact_note_uuid = uuid(); $sql = "insert into v_contact_notes "; $sql .= "("; $sql .= "contact_note_uuid, "; $sql .= "contact_uuid, "; $sql .= "contact_note, "; $sql .= "domain_uuid, "; $sql .= "last_mod_date, "; $sql .= "last_mod_user "; $sql .= ")"; $sql .= "values "; $sql .= "("; $sql .= "'$contact_note_uuid', "; $sql .= "'$contact_uuid', "; $sql .= "'$contact_note', "; $sql .= "'$domain_uuid', "; $sql .= "now(), "; $sql .= "'".$_SESSION['username']."' "; $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") //update the note if ($action == "update") { $sql = "update v_contact_notes set "; $sql .= "contact_uuid = '$contact_uuid', "; $sql .= "contact_note = '$contact_note', "; $sql .= "last_mod_date = now(), "; $sql .= "last_mod_user = '".$_SESSION['username']."' "; $sql .= "where domain_uuid = '$domain_uuid' "; $sql .= "and contact_note_uuid = '$contact_note_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_note_uuid = $_GET["id"]; $sql = ""; $sql .= "select * from v_contact_notes "; $sql .= "where domain_uuid = '$domain_uuid' "; $sql .= "and contact_note_uuid = '$contact_note_uuid' "; $prep_statement = $db->prepare(check_sql($sql)); $prep_statement->execute(); $result = $prep_statement->fetchAll(PDO::FETCH_NAMED); foreach ($result as &$row) { $contact_note = $row["contact_note"]; $last_mod_date = $row["last_mod_date"]; $last_mod_user = $row["last_mod_user"]; break; //limit to 1 row } unset ($prep_statement); } //show the header require_once "resources/header.php"; if ($action == "update") { $document['title'] = $text['title-contact_notes-edit']; } else if ($action == "add") { $document['title'] = $text['title-contact_notes-add']; } //show the content 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 "
"; if ($action == "add") { echo "".$text['header-contact_notes-add'].""; } if ($action == "update") { echo "".$text['header-contact_notes-edit']."\n"; } echo ""; echo " "; echo " \n"; echo "
 
\n"; echo " ".$text['label-contact_note']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo "\n"; echo "
\n"; echo "
"; echo " \n"; if ($action == "update") { echo " \n"; } echo " \n"; echo "
"; echo "

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