Remove freeb and some other legacy code.
[openemr.git] / interface / patient_file / summary / fitness_status.php
blob91c5fc2f57ee322f1f6e94480a5082e5767c26a1
1 <?php
2 // Copyright (C) 2008 Rod Roark <rod@sunsetsystems.com>
3 //
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
9 require_once("../../globals.php");
10 require_once("$srcdir/forms.inc");
11 require_once("$srcdir/patient.inc");
12 require_once("$srcdir/lists.inc");
13 require_once("$srcdir/acl.inc");
14 require_once("$srcdir/formatting.inc.php");
16 // Get relevant ACL info.
17 $auth_notes_a = acl_check('encounters', 'notes_a');
18 $auth_notes = acl_check('encounters', 'notes');
19 $auth_relaxed = acl_check('encounters', 'relaxed');
20 $auth_demo = acl_check('patients' , 'demo');
22 $tmp = getPatientData($pid, "squad");
23 if ($tmp['squad'] && ! acl_check('squads', $tmp['squad']))
24 $auth_notes_a = $auth_notes = $auth_demo = $auth_relaxed = 0;
26 if (!($auth_notes_a || $auth_notes || $auth_relaxed)) {
27 echo "<body>\n<html>\n";
28 echo "<p>(".xl('Encounters not authorized').")</p>\n";
29 echo "</body>\n</html>\n";
30 exit();
33 <html>
34 <head>
35 <?php html_header_show();?>
36 <link rel="stylesheet" href="<?php echo $css_header;?>" type="text/css">
37 <script type="text/javascript" src="../../../library/tooltip.js"></script>
39 <script language="JavaScript">
41 function toencounter(enc, datestr) {
42 top.restoreSession();
43 <?php if ($GLOBALS['concurrent_layout']) { ?>
44 parent.parent.left_nav.setEncounter(datestr, enc, parent.window.name);
45 parent.parent.left_nav.setRadio(parent.window.name, 'enc');
46 parent.location.href = '../encounter/encounter_top.php?set_encounter=' + enc;
47 <?php } else { ?>
48 top.Title.location.href = '../encounter/encounter_title.php?set_encounter=' + enc;
49 top.Main.location.href = '../encounter/patient_encounter.php?set_encounter=' + enc;
50 <?php } ?>
53 </script>
55 </head>
57 <body class="body_bottom">
59 <font class='title'><?php xl('Stength and Conditioning','e'); ?></font>
61 <br>
63 <table>
64 <tr>
65 <td class='bold'><?php xl('Date','e'); ?></td>
66 <td class='bold'><?php xl('Reason','e'); ?></td>
67 <td class='bold'><?php xl('Provider','e'); ?></td>
68 </tr>
70 <?php
71 $res = sqlStatement("SELECT " .
72 "f.encounter, f.user, fe.date, fe.reason, fe.sensitivity " .
73 "FROM forms AS f " .
74 "LEFT OUTER JOIN form_encounter AS fe ON fe.pid = f.pid " .
75 "AND fe.encounter = f.encounter " .
76 "WHERE f.pid = '$pid' AND f.formdir = 'strength_conditioning' " .
77 "ORDER BY fe.date DESC, f.encounter DESC");
79 while ($row = sqlFetchArray($res)) {
80 $raw_encounter_date = date("Y-m-d", strtotime($row['date']));
81 $reason_string = $row['reason'];
82 $auth_sensitivity = true;
84 $href = "javascript:window.toencounter(" . $row['encounter'] . ",\"" .
85 oeFormatShortDate($raw_encounter_date) . "\")";
86 $linkbeg = "<a class='text' href='$href'>";
87 $linkend = "</a>";
89 if ($row['sensitivity']) {
90 $auth_sensitivity = acl_check('sensitivities', $row['sensitivity']);
91 if (!$auth_sensitivity) {
92 $reason_string = "(No access)";
93 $linkbeg = "<span class='text'>";
94 $linkend = "</span>";
98 echo "<tr>\n";
100 // show encounter date
101 echo "<td valign='top'>$linkbeg$raw_encounter_date$linkend</td>\n";
103 // show encounter reason/title
104 echo "<td valign='top'>$linkbeg" . $reason_string . "$linkend</td>\n";
106 // show user who created the encounter
107 echo "<td valign='top'>$linkbeg" . $row['user'] . "$linkend</td>\n";
109 echo "</tr>\n";
113 </table>
115 </body>
116 </html>