Highway to PSR2
[openemr.git] / interface / patient_file / summary / fitness_status.php
blobd39c92de9f62e3283e7e991ad4f271ea36f54025
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");
15 // Get relevant ACL info.
16 $auth_notes_a = acl_check('encounters', 'notes_a');
17 $auth_notes = acl_check('encounters', 'notes');
18 $auth_relaxed = acl_check('encounters', 'relaxed');
19 $auth_demo = acl_check('patients', 'demo');
21 $tmp = getPatientData($pid, "squad");
22 if ($tmp['squad'] && ! acl_check('squads', $tmp['squad'])) {
23 $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 parent.parent.left_nav.setEncounter(datestr, enc, parent.window.name);
44 parent.location.href = '../encounter/encounter_top.php?set_encounter=' + enc;
47 </script>
49 </head>
51 <body class="body_bottom">
53 <font class='title'><?php xl('Stength and Conditioning', 'e'); ?></font>
55 <br>
57 <table>
58 <tr>
59 <td class='bold'><?php xl('Date', 'e'); ?></td>
60 <td class='bold'><?php xl('Reason', 'e'); ?></td>
61 <td class='bold'><?php xl('Provider', 'e'); ?></td>
62 </tr>
64 <?php
65 $res = sqlStatement("SELECT " .
66 "f.encounter, f.user, fe.date, fe.reason, fe.sensitivity " .
67 "FROM forms AS f " .
68 "LEFT OUTER JOIN form_encounter AS fe ON fe.pid = f.pid " .
69 "AND fe.encounter = f.encounter " .
70 "WHERE f.pid = '$pid' AND f.formdir = 'strength_conditioning' " .
71 "ORDER BY fe.date DESC, f.encounter DESC");
73 while ($row = sqlFetchArray($res)) {
74 $raw_encounter_date = date("Y-m-d", strtotime($row['date']));
75 $reason_string = $row['reason'];
76 $auth_sensitivity = true;
78 $href = "javascript:window.toencounter(" . $row['encounter'] . ",\"" .
79 oeFormatShortDate($raw_encounter_date) . "\")";
80 $linkbeg = "<a class='text' href='$href'>";
81 $linkend = "</a>";
83 if ($row['sensitivity']) {
84 $auth_sensitivity = acl_check('sensitivities', $row['sensitivity']);
85 if (!$auth_sensitivity) {
86 $reason_string = "(No access)";
87 $linkbeg = "<span class='text'>";
88 $linkend = "</span>";
92 echo "<tr>\n";
94 // show encounter date
95 echo "<td valign='top'>$linkbeg$raw_encounter_date$linkend</td>\n";
97 // show encounter reason/title
98 echo "<td valign='top'>$linkbeg" . $reason_string . "$linkend</td>\n";
100 // show user who created the encounter
101 echo "<td valign='top'>$linkbeg" . $row['user'] . "$linkend</td>\n";
103 echo "</tr>\n";
107 </table>
109 </body>
110 </html>