Highway to PSR2
[openemr.git] / contrib / forms / contacts / report.php
blob68adf89db583c0634583e14e6bd5c289dc174a20
1 <?php
2 //------------Forms generated from formsWiz
3 include_once("../../globals.php");
4 include_once($GLOBALS["srcdir"]."/api.inc");
5 function contacts_report($pid, $encounter, $cols, $id)
7 $count = 0;
8 $data = formFetch("form_contacts", $id);
9 if ($data) {
10 print "<table><tr>";
11 foreach ($data as $key => $value) {
12 if ($key == "id" || $key == "pid" || $key == "user" || $key == "groupname" || $key == "authorized" || $key == "activity" || $key == "date" || $value == "" || $value == "0000-00-00 00:00:00") {
13 continue;
16 if ($value == "on") {
17 $value = "yes";
20 $key=ucwords(str_replace("_", " ", $key));
21 print "<td><span class=bold>$key: </span><span class=text>$value</span></td>";
22 $count++;
23 if ($count == $cols) {
24 $count = 0;
25 print "</tr><tr>\n";
30 print "</tr></table>";