Highway to PSR2
[openemr.git] / contrib / forms / nursing_notes / report.php
blob3d3fd8a10741032dba05f48be34371de0f495818
1 <?php
2 // Copyright (C) 2009 Aron Racho <aron@mi-squared.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 //------------Forms generated from formsWiz
8 include_once("../../globals.php");
9 include_once($GLOBALS["srcdir"] . "/api.inc");
10 function nursing_notes_report($pid, $encounter, $cols, $id)
12 $count = 0;
13 $data = formFetch("form_nursing_notes", $id);
14 if ($data) {
15 print "<table><tr>";
16 foreach ($data as $key => $value) {
17 if ($key == "id" || $key == "pid" || $key == "user" ||
18 $key == "groupname" || $key == "authorized" || $key == "activity" ||
19 $key == "date" || $value == "" || $value == "0000-00-00 00:00:00") {
20 continue;
23 if ($value == "on") {
24 $value = "yes";
27 $key=ucwords(str_replace("_", " ", $key));
28 print "<td><span class=bold>$key: </span><span class=text>$value</span></td>";
29 $count++;
30 if ($count == $cols) {
31 $count = 0;
32 print "</tr><tr>\n";
37 print "</tr></table>";