Initial import.
[openemr.git] / interface / forms / note / report.php
blob56a85bcfb2734cd2fa3faf5bbb10dbbf7cf40adb
1 <!-- Work/School Note Form created by Nikolai Vitsyn: 2004/02/13 and update 2005/03/30
2 Copyright (C) Open Source Medical Software
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 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -->
18 <?php
19 include_once("../../globals.php");
20 include_once($GLOBALS["srcdir"]."/api.inc");
21 function note_report( $pid, $encounter, $cols, $id) {
22 $count = 0;
23 $data = formFetch("form_note", $id);
24 if ($data) {
25 //printf("<h1><font color=\"2FB472\">Company Name</font></h1>");
26 //printf("<h2><font color=\"2FB472\">Company Address</font></h2>");
27 //printf("<h2><font color=\"2FB472\">Company Address</font></h2>");
28 //printf("<h2><font color=\"2FB472\">Phone: (XXX) 999-9999</font></h2>");
29 //printf("<h2><font color=\"2FB472\">Fax: (XXX) 999-9999</font></h2>");
30 //printf("<h2><font color=\"2FB472\">www.company.com</font></h2>");
32 print "<table><tr>";
33 foreach($data as $key => $value) {
34 if ($key == "id" || $key == "pid" || $key == "user" || $key == "groupname" || $key == "authorized" || $key == "activity" || $key == "date" || $value == "" || $value == "0000-00-00 00:00:00") {
35 continue;
37 if ($value == "on") {
38 $value = "yes";
41 $key=ucwords(str_replace("_"," ",$key));
42 print("<tr>\n");
43 print("<tr>\n");
44 print "<td><span class=bold>$key: </span><span class=text>$value</span></td>";
45 $count++;
46 if ($count == $cols) {
47 $count = 0;
48 print "</tr><tr>\n";
52 print "</tr></table>";
54 ?>