3 * Batch list processor, included from batchcom
6 * @link http://www.open-emr.org
8 * @author Jason 'Toolbox' Oettinger <jason@oettinger.email>
9 * @copyright Copyright (c) 2008 cfapress
10 * @copyright Copyright (c) 2017 Jason 'Toolbox' Oettinger <jason@oettinger.email>
11 * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
12 * @todo menu for fields could be added in the future
15 require_once("../globals.php");
16 use OpenEMR\Core\Header
;
21 <title
><?php
echo xlt("Phone Call List"); ?
></title
>
22 <?php Header
::setupHeader(); ?
>
24 <body
class="body_top container">
26 <?php
require_once("batch_navigation.php");?
>
27 <h1
class="col-md-12">
28 <a href
="batchcom.php"><?php
echo xlt('Batch Communication Tool'); ?
></a
>
29 <small
><?php
echo xlt('Phone Call List report'); ?
></small
>
33 <div
class="col-md-12">
34 <table
class="table table-striped table-bordered">
37 foreach ([xlt('Name'),xlt('DOB'),xlt('Home'),xlt('Work'),xlt('Contact'),xlt('Cell')] as $header) {
38 echo "<th>$header</th>";
44 while ($row = sqlFetchArray($res)) {
46 echo text($row['title']). ' ' . text($row['fname']) . ' ' . text($row['lname']);
48 echo text($row['DOB']);
50 echo text($row['phone_home']);
52 echo text($row['phone_biz']);
54 echo text($row['phone_contact']);
56 echo text($row['phone_cell']);