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_note_view')) { //access granted } else { echo "access denied"; exit; } //get the contact list $sql = "select * from v_contact_notes "; $sql .= "where domain_uuid = :domain_uuid "; $sql .= "and contact_uuid = :contact_uuid "; $sql .= "order by last_mod_date desc "; $parameters['domain_uuid'] = $_SESSION['domain_uuid']; $parameters['contact_uuid'] = $contact_uuid; $database = new database; $contact_notes = $database->select($sql, $parameters, 'all'); unset($sql, $parameters); //show if exists if (is_array($contact_notes) && @sizeof($contact_notes) != 0) { //show the content echo "
\n"; $x = 0; foreach ($contact_notes as $row) { $contact_note = str_replace("\n","
",escape($row['contact_note'])); echo "
".$contact_note."
\n"; echo "
".escape($row['last_mod_user']).": ".date("j M Y @ H:i:s", strtotime($row['last_mod_date']))."
\n"; $x++; } echo "
\n"; unset($contact_notes); } ?>