more organization of autoloaded files (#424)
[openemr.git] / interface / patient_file / summary / disclosure_full.php
blob42fffe1fe1f17e4924a0942e0e7df2f841164e0e
1 <?php
2 /**
4 * Patient disclosures main screen.
6 * Copyright (C) Visolve <vicareplus_engg@visolve.com>
8 * LICENSE: This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://opensource.org/licenses/gpl-license.php>;.
19 * @package OpenEMR
20 * @author Visolve <vicareplus_engg@visolve.com>
21 * @author Brady Miller <brady@sparmy.com>
22 * @link http://www.open-emr.org
25 //SANITIZE ALL ESCAPES
26 $sanitize_all_escapes=true;
29 //STOP FAKE REGISTER GLOBALS
30 $fake_register_globals=false;
33 require_once("../../globals.php");
34 require_once("$srcdir/log.inc");
36 //retrieve the user name
37 $res = sqlQuery("select username from users where username=?", array($_SESSION{"authUser"}) );
38 $uname=$res{"username"};
39 //if the mode variable is set to disclosure, retrieve the values from 'disclosure_form ' in record_disclosure.php to store it in database.
40 if (isset($_POST["mode"]) and $_POST["mode"] == "disclosure"){
41 $dates=trim($_POST['dates']);
42 $event=trim($_POST['form_disclosure_type']);
43 $recipient_name=trim($_POST['recipient_name']);
44 $disclosure_desc=trim($_POST['desc_disc']);
45 $disclosure_id=trim($_POST['disclosure_id']);
46 if (isset($_POST["updatemode"]) AND $_POST["updatemode"] == "disclosure_update")
48 //update the recorded disclosure in the extended_log table.
49 updateRecordedDisclosure($dates,$event,$recipient_name,$disclosure_desc,$disclosure_id);
51 else
53 //insert the disclosure records in the extended_log table.
54 recordDisclosure($dates,$event,$pid,$recipient_name,$disclosure_desc,$uname);
57 if (isset($_GET['deletelid']))
59 $deletelid=$_GET['deletelid'];
60 //function to delete the recorded disclosures
61 deleteDisclosure($deletelid);
64 <html>
65 <head>
66 <link rel='stylesheet' href="<?php echo $css_header;?>" type="text/css">
67 <!-- supporting javascript code -->
68 <script type="text/javascript" src="<?php echo $GLOBALS['assets_static_relative']; ?>/jquery-min-1-2-1/index.js"></script>
69 <link rel="stylesheet" type="text/css" href="../../../library/js/fancybox/jquery.fancybox-1.2.6.css" media="screen" />
70 <script type="text/javascript" src="../../../library/dialog.js?v=<?php echo $v_js_includes; ?>"></script>
71 <script type="text/javascript" src="<?php echo $GLOBALS['assets_static_relative']; ?>/jquery-min-1-3-2/index.js"></script>
72 <script type="text/javascript" src="../../../library/js/common.js"></script>
73 <script type="text/javascript" src="../../../library/js/fancybox/jquery.fancybox-1.2.6.js"></script>
74 </head>
75 <body class="body_top">
76 <div>
77 <span class="title"><?php echo xlt('Disclosures'); ?></span>
78 </div>
79 <div class="disclosure_wrap">
80 <div style='float: left; margin-right: 10px'><?php echo xlt('for'); ?>&nbsp;
81 <span class="title"><a href="../summary/demographics.php" onclick="top.restoreSession()"><?php $pname = getPatientName($pid); echo text($pname); ?></a></span>
82 </div>
83 <div>
84 <a href="record_disclosure.php" class="css_button iframe" onclick="top.restoreSession()"><span><?php echo xlt('Record'); ?></span></a>
85 </div>
86 <div>
87 <a href="demographics.php"
88 class="css_button" onclick="top.restoreSession()"> <span><?php echo xlt('View Patient') ?></span></a>
89 </div>
90 </div>
91 <br>
92 <br>
93 <?php
94 $N=15;
95 $offset = $_REQUEST['offset'];
96 if (!isset($offset)) $offset = 0;
98 $disclQry = " SELECT el.id, el.event, el.recipient, el.description, el.date, CONCAT(u.fname, ' ', u.lname) as user_fullname FROM extended_log el" .
99 " LEFT JOIN users u ON u.username = el.user " .
100 " WHERE el.patient_id = ? AND el.event IN (SELECT option_id FROM list_options WHERE list_id='disclosure_type' AND activity = 1)" .
101 " ORDER BY el.date DESC ";
102 $r2= sqlStatement($disclQry, array($pid) );
103 $totalRecords=sqlNumRows($r2);
105 //echo "select id,event,recipient,description,date from extended_log where patient_id=$pid AND event in (select option_id from list_options where list_id='disclosure_type') order by date desc limit $offset ,$N";
106 //display all of the disclosures for the day, as well as others that are active from previous dates, up to a certain number, $N
107 $disclInnerQry = " SELECT el.id, el.event, el.recipient, el.description, el.date, CONCAT(u.fname, ' ', u.lname) as user_fullname FROM extended_log el" .
108 " LEFT JOIN users u ON u.username = el.user" .
109 " WHERE patient_id = ? AND event IN (SELECT option_id FROM list_options WHERE list_id = 'disclosure_type' AND activity = 1)" .
110 " ORDER BY date DESC LIMIT $offset, $N";
112 $r1= sqlStatement($disclInnerQry, array($pid) );
113 $n=sqlNumRows($r1);
114 $noOfRecordsLeft=($totalRecords - $offset);
115 if ($n>0){?>
116 <table border='0' class="text">
117 <tr>
118 <td colspan='5' style="padding: 5px;"><a href="disclosure_full.php" class="" id='Submit' onclick="top.restoreSession()"><span><?php echo xlt('Refresh'); ?></span></a></td>
119 </tr>
120 </table>
121 <div id='pnotes'>
122 <table border='0' cellpadding="1" width='80%'>
123 <tr class="showborder_head" align='left' height="22">
124 <th style='width: 120px';>&nbsp;</th>
125 <th style="border-style: 1px solid #000" width="140px"><?php echo xlt('Recipient Name'); ?></th>
126 <th style="border-style: 1px solid #000" width="140px"><?php echo xlt('Disclosure Type'); ?></th>
127 <th style="border-style: 1px solid #000"><?php echo xlt('Description'); ?></th>
128 <th style="border-style: 1px solid #000"><?php echo xlt('Provider'); ?></th>
129 </tr>
130 <?php
131 $result2 = array();
132 for ($iter = 0;$frow = sqlFetchArray($r1);$iter++)
133 $result2[$iter] = $frow;
134 foreach($result2 as $iter)
136 $app_event=$iter{event};
137 $event=explode("-",$app_event);
138 $description =nl2br(text($iter{description})); //for line break if there is any new lines in the input text area field.
140 <!-- List the recipient name, description, date and edit and delete options-->
141 <tr class="noterow" height='25'>
142 <!--buttons for edit and delete.-->
143 <td valign='top'><a href='record_disclosure.php?editlid=<?php echo text($iter{id}); ?>'
144 class='css_button_small iframe' onclick='top.restoreSession()'><span><?php echo xlt('Edit');?></span></a>
145 <a href='#' class='deletenote css_button_small'
146 id='<?php echo text($iter{id}); ?>' onclick='top.restoreSession()'><span><?php echo xlt('Delete');?></span></a></td>
147 <td class="text" valign='top'><?php echo text($iter{recipient});?>&nbsp;</td>
148 <td class='text' valign='top'><?php if($event[1]=='healthcareoperations'){ echo xlt('health care operations'); } else echo text($event[1]); ?>&nbsp;</td>
149 <td class='text'><?php echo text($iter{date})." ".$description;?>&nbsp;</td>
150 <td class='text'><?php echo text($iter{user_fullname});?></td>
151 </tr>
152 <?php
155 else
157 <br>
158 <!-- Display None, if there is no disclosure -->
159 <span class='text' colspan='3'><?php echo xlt('None');?></span>
160 <?php
163 </table>
164 <table width='400' border='0' cellpadding='0' cellspacing='0'>
165 <tr>
166 <td>
167 <?php
168 if ($offset > ($N-1) && $n!=0) {
169 echo " <a class='link' href='disclosure_full.php?active=" . $active .
170 "&offset=" . ($offset-$N) . "' onclick='top.restoreSession()'>[" .
171 xlt('Previous') . "]</a>\n";
175 <?php
177 if ($n >= $N && $noOfRecordsLeft!=$N) {
178 echo "&nbsp;&nbsp; <a class='link' href='disclosure_full.php?active=" . $active.
179 "&offset=" . ($offset+$N) ."&leftrecords=".$noOfRecordsLeft."' onclick='top.restoreSession()'>[" .
180 xlt('Next') . "]</a>\n";
183 </td>
184 </tr>
185 </table>
186 </div>
187 </body>
189 <script type="text/javascript">
190 $(document).ready(function()
192 /// todo, move this to a common library
193 //for row highlight.
194 $(".noterow").mouseover(function() { $(this).toggleClass("highlight"); });
195 $(".noterow").mouseout(function() { $(this).toggleClass("highlight"); });
196 //fancy box
197 enable_modals();
198 //for deleting the disclosures
199 $(".deletenote").click(function() { DeleteNote(this); });
201 var DeleteNote = function(logevent)
203 if (confirm("<?php echo htmlspecialchars(xl('Are you sure you want to delete this disclosure?','','','\n ') . xl('This action CANNOT be undone.'),ENT_QUOTES); ?>"))
205 top.restoreSession();
206 window.location.replace("disclosure_full.php?deletelid="+logevent.id)
210 </script>
211 </html>