2 // Copyright (C) 2008 Rod Roark <rod@sunsetsystems.com>
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";
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
) {
43 parent
.parent
.left_nav
.setEncounter(datestr
, enc
, parent
.window
.name
);
44 parent
.location
.href
= '../encounter/encounter_top.php?set_encounter=' + enc
;
51 <body
class="body_bottom">
53 <font
class='title'><?php
xl('Stength and Conditioning','e'); ?
></font
>
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
>
65 $res = sqlStatement("SELECT " .
66 "f.encounter, f.user, fe.date, fe.reason, fe.sensitivity " .
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'>";
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'>";
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";