Remove concurrent_layout and clarify layout and themes selections (#272)
[openemr.git] / interface / patient_file / summary / disclosure_full.php
blob96d00df431aa537e1db4dac42da370f7b2c4a540
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/sql.inc");
35 require_once("$srcdir/log.inc");
37 //retrieve the user name
38 $res = sqlQuery("select username from users where username=?", array($_SESSION{"authUser"}) );
39 $uname=$res{"username"};
40 //if the mode variable is set to disclosure, retrieve the values from 'disclosure_form ' in record_disclosure.php to store it in database.
41 if (isset($_POST["mode"]) and $_POST["mode"] == "disclosure"){
42 $dates=trim($_POST['dates']);
43 $event=trim($_POST['form_disclosure_type']);
44 $recipient_name=trim($_POST['recipient_name']);
45 $disclosure_desc=trim($_POST['desc_disc']);
46 $disclosure_id=trim($_POST['disclosure_id']);
47 if (isset($_POST["updatemode"]) AND $_POST["updatemode"] == "disclosure_update")
49 //update the recorded disclosure in the extended_log table.
50 updateRecordedDisclosure($dates,$event,$recipient_name,$disclosure_desc,$disclosure_id);
52 else
54 //insert the disclosure records in the extended_log table.
55 recordDisclosure($dates,$event,$pid,$recipient_name,$disclosure_desc,$uname);
58 if (isset($_GET['deletelid']))
60 $deletelid=$_GET['deletelid'];
61 //function to delete the recorded disclosures
62 deleteDisclosure($deletelid);
65 <html>
66 <head>
67 <link rel='stylesheet' href="<?php echo $css_header;?>" type="text/css">
68 <!-- supporting javascript code -->
69 <script type="text/javascript" src="<?php echo $GLOBALS['assets_static_relative']; ?>/jquery-min-1-2-1/index.js"></script>
70 <link rel="stylesheet" type="text/css" href="../../../library/js/fancybox/jquery.fancybox-1.2.6.css" media="screen" />
71 <script type="text/javascript" src="../../../library/dialog.js"></script>
72 <script type="text/javascript" src="<?php echo $GLOBALS['assets_static_relative']; ?>/jquery-min-1-3-2/index.js"></script>
73 <script type="text/javascript" src="../../../library/js/common.js"></script>
74 <script type="text/javascript" src="../../../library/js/fancybox/jquery.fancybox-1.2.6.js"></script>
75 </head>
76 <body class="body_top">
77 <div>
78 <span class="title"><?php echo xlt('Disclosures'); ?></span>
79 </div>
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 <br>
91 <br>
92 <?php
93 $N=15;
94 $offset = $_REQUEST['offset'];
95 if (!isset($offset)) $offset = 0;
97 $disclQry = " SELECT el.id, el.event, el.recipient, el.description, el.date, CONCAT(u.fname, ' ', u.lname) as user_fullname FROM extended_log el ".
98 " LEFT JOIN users u ON u.username = el.user ".
99 " WHERE el.patient_id=? AND el.event IN (SELECT option_id FROM list_options WHERE list_id='disclosure_type') ORDER BY el.date DESC ";
100 $r2= sqlStatement($disclQry, array($pid) );
101 $totalRecords=sqlNumRows($r2);
103 //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";
104 //display all of the disclosures for the day, as well as others that are active from previous dates, up to a certain number, $N
105 $disclInnerQry = " SELECT el.id, el.event, el.recipient, el.description, el.date, CONCAT(u.fname, ' ', u.lname) as user_fullname FROM extended_log el ".
106 " LEFT JOIN users u ON u.username = el.user ".
107 " WHERE patient_id=? AND event IN (SELECT option_id FROM list_options WHERE list_id='disclosure_type') ORDER BY date DESC LIMIT $offset,$N";
109 $r1= sqlStatement($disclInnerQry, array($pid) );
110 $n=sqlNumRows($r1);
111 $noOfRecordsLeft=($totalRecords - $offset);
112 if ($n>0){?>
113 <table border='0' class="text">
114 <tr>
115 <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>
116 </tr>
117 </table>
118 <div id='pnotes'>
119 <table border='0' cellpadding="1" width='80%'>
120 <tr class="showborder_head" align='left' height="22">
121 <th style='width: 120px';>&nbsp;</th>
122 <th style="border-style: 1px solid #000" width="140px"><?php echo xlt('Recipient Name'); ?></th>
123 <th style="border-style: 1px solid #000" width="140px"><?php echo xlt('Disclosure Type'); ?></th>
124 <th style="border-style: 1px solid #000"><?php echo xlt('Description'); ?></th>
125 <th style="border-style: 1px solid #000"><?php echo xlt('Provider'); ?></th>
126 </tr>
127 <?php
128 $result2 = array();
129 for ($iter = 0;$frow = sqlFetchArray($r1);$iter++)
130 $result2[$iter] = $frow;
131 foreach($result2 as $iter)
133 $app_event=$iter{event};
134 $event=explode("-",$app_event);
135 $description =nl2br(text($iter{description})); //for line break if there is any new lines in the input text area field.
137 <!-- List the recipient name, description, date and edit and delete options-->
138 <tr class="noterow" height='25'>
139 <!--buttons for edit and delete.-->
140 <td valign='top'><a href='record_disclosure.php?editlid=<?php echo text($iter{id}); ?>'
141 class='css_button_small iframe' onclick='top.restoreSession()'><span><?php echo xlt('Edit');?></span></a>
142 <a href='#' class='deletenote css_button_small'
143 id='<?php echo text($iter{id}); ?>' onclick='top.restoreSession()'><span><?php echo xlt('Delete');?></span></a></td>
144 <td class="text" valign='top'><?php echo text($iter{recipient});?>&nbsp;</td>
145 <td class='text' valign='top'><?php if($event[1]=='healthcareoperations'){ echo xlt('health care operations'); } else echo text($event[1]); ?>&nbsp;</td>
146 <td class='text'><?php echo text($iter{date})." ".$description;?>&nbsp;</td>
147 <td class='text'><?php echo text($iter{user_fullname});?></td>
148 </tr>
149 <?php
152 else
154 <br>
155 <!-- Display None, if there is no disclosure -->
156 <span class='text' colspan='3'><?php echo xlt('None');?></span>
157 <?php
160 </table>
161 <table width='400' border='0' cellpadding='0' cellspacing='0'>
162 <tr>
163 <td>
164 <?php
165 if ($offset > ($N-1) && $n!=0) {
166 echo " <a class='link' href='disclosure_full.php?active=" . $active .
167 "&offset=" . ($offset-$N) . "' onclick='top.restoreSession()'>[" .
168 xlt('Previous') . "]</a>\n";
172 <?php
174 if ($n >= $N && $noOfRecordsLeft!=$N) {
175 echo "&nbsp;&nbsp; <a class='link' href='disclosure_full.php?active=" . $active.
176 "&offset=" . ($offset+$N) ."&leftrecords=".$noOfRecordsLeft."' onclick='top.restoreSession()'>[" .
177 xlt('Next') . "]</a>\n";
180 </td>
181 </tr>
182 </table>
183 </div>
184 </body>
186 <script type="text/javascript">
187 $(document).ready(function()
189 /// todo, move this to a common library
190 //for row highlight.
191 $(".noterow").mouseover(function() { $(this).toggleClass("highlight"); });
192 $(".noterow").mouseout(function() { $(this).toggleClass("highlight"); });
193 //fancy box
194 enable_modals();
195 //for deleting the disclosures
196 $(".deletenote").click(function() { DeleteNote(this); });
198 var DeleteNote = function(logevent)
200 if (confirm("<?php echo htmlspecialchars(xl('Are you sure you want to delete this disclosure?','','','\n ') . xl('This action CANNOT be undone.'),ENT_QUOTES); ?>"))
202 top.restoreSession();
203 window.location.replace("disclosure_full.php?deletelid="+logevent.id)
207 </script>
208 </html>