Highway to PSR2
[openemr.git] / interface / batchcom / batch_navigation.php
blob2979d5902008ef62f4fe31c543f731f4675165e1
1 <?php
2 /**
3 * Batchcom navigation bar.
5 * @package OpenEMR
6 * @link http://www.open-emr.org
7 * @author Brady Miller <brady.g.miller@gmail.com>
8 * @author Jason 'Toolbox' Oettinger <jason@oettinger.email>
9 * @copyright Copyright (c) 2017 Brady Miller <brady.g.miller@gmail.com>
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
14 <nav>
15 <ul class="nav nav-tabs nav-justified">
16 <?php
17 if (acl_check('admin', 'batchcom')) { ?>
18 <li role="presentation" title="<?php echo xla('BatchCom'); ?>">
19 <a href="<?php echo $GLOBALS['rootdir']; ?>/batchcom/batchcom.php">
20 <?php echo xlt('BatchCom'); ?>
21 </a>
22 </li>
23 <?php
26 if (acl_check('admin', 'notification')) { ?>
27 <li role="presentation" title="<?php echo xla('SMS Notification'); ?>">
28 <a href="<?php echo $GLOBALS['rootdir']; ?>/batchcom/smsnotification.php">
29 <?php echo xlt('SMS Notification'); ?>
30 </a>
31 </li>
32 <?php
35 <li role="presentation" title="<?php echo xla('Email Notification'); ?>">
36 <a href="<?php echo $GLOBALS['rootdir']; ?>/batchcom/emailnotification.php">
37 <?php echo xlt('Email Notification'); ?>
38 </a>
39 </li>
40 <li role="presentation" title="<?php echo xla('SMS/Email Alert Settings'); ?>">
41 <a href="<?php echo $GLOBALS['rootdir']; ?>/batchcom/settingsnotification.php">
42 <?php echo xlt('SMS/Email Alert Settings'); ?>
43 </a>
44 </li>
46 </ul>
47 </nav>