Acknowledgements page update
[openemr.git] / interface / usergroup / usergroup_navigation.php
blob78f7995c29581cf8acba08e1eb0c61d226c4ac99
1 <?php
2 include_once("../globals.php");
3 include_once("../../library/acl.inc");
4 ?>
5 <html>
6 <head>
7 <title><?php xl('Navigation','e'); ?></title>
9 <link rel="stylesheet" href="<?php echo $css_header;?>" type="text/css">
11 </head>
12 <body class="body_nav">
14 <form border=0 method=post target="_top" name="find_patient" action="../main/finder/patient_finder.php">
16 <table border="0" cellspacing="0" cellpadding="0" width="100%" height="100%">
17 <tr>
19 <?php if (acl_check('admin', 'users')) { ?>
20 <td valign="middle" nowrap>
21 &nbsp;&nbsp;<a class=menu target=Main href="facilities.php"
22 onclick="top.restoreSession()"
23 title="Add or Edit Facilities"><?php xl('Facilities','e'); ?></a>&nbsp;
24 </td>
25 <?php } ?>
27 <?php if (acl_check('admin', 'users')) { ?>
28 <td valign="middle" nowrap>
29 &nbsp;<a class=menu target=Main href="usergroup_admin.php"
30 onclick="top.restoreSession()"
31 title="Add or Edit Users and Groups"><?php xl('Users','e'); ?></a>&nbsp;
32 </td>
33 <?php } ?>
35 <?php if (acl_check('admin', 'forms')) { ?>
36 <td valign="middle" nowrap>
37 &nbsp;<a class=menu target=Main href="../forms_admin/forms_admin.php"
38 onclick="top.restoreSession()"
39 title="Activate New Forms"><?php xl('Forms','e'); ?></a>&nbsp;
40 </td>
41 <?php } ?>
43 <?php if (acl_check('admin', 'practice')) { ?>
44 <td valign="middle" nowrap>
45 &nbsp;<a class=menu target=Main href="<?php echo $GLOBALS['webroot']?>/controller.php?practice_settings"
46 onclick="top.restoreSession()"
47 title="Practice Settings"><?php xl('Practice','e');?></a>&nbsp;
48 </td>
49 <?php } ?>
51 <?php if (acl_check('admin', 'acl') && isset($phpgacl_location)) { ?>
52 <td valign="middle" nowrap>
53 &nbsp;<a class=menu target=Main href="adminacl.php"
54 onclick="top.restoreSession()"
55 title="Access Control List Administration"><?php xl('ACL','e');?></a>&nbsp;
56 </td>
57 <?php } ?>
59 <?php if (acl_check('admin', 'calendar')) { ?>
60 <td valign="middle" nowrap>
61 &nbsp;<a class=menu target=Main href="../main/calendar/index.php?module=PostCalendar&type=admin&func=modifyconfig"
62 onclick="top.restoreSession()"
63 title="Calendar Settings"><?php xl('Calendar','e'); ?></a>&nbsp;
64 </td>
65 <?php } ?>
67 <?php if ( (!$GLOBALS['disable_phpmyadmin_link']) && (acl_check('admin', 'database')) ) { ?>
68 <td valign="middle" nowrap>
69 &nbsp;<a class=menu target=Main href="../../phpmyadmin/index.php"
70 onclick="top.restoreSession()"
71 title="Database Reporting"><?php xl('Database','e'); ?></a>&nbsp;
72 </td>
73 <?php } ?>
75 <?php if (acl_check('admin', 'batchcom')) { ?>
76 <td valign="middle" nowrap>
77 &nbsp;<a class=menu target=Main href="../batchcom/batchcom.php"
78 onclick="top.restoreSession()"
79 title="Batch Communication and Export"><?php xl('Notification','e');?></a>&nbsp;
80 </td>
81 <?php } ?>
83 <?php if ($GLOBALS['inhouse_pharmacy'] && acl_check('admin', 'drugs')) { ?>
84 <td valign="middle" nowrap>
85 &nbsp;<a class=menu target=Main href="../drugs/drug_inventory.php"
86 onclick="top.restoreSession()"
87 title="Drug Inventory Management"><?php xl('Drugs','e');?></a>&nbsp;
88 </td>
89 <?php } ?>
91 <?php if (acl_check('admin', 'language')) { ?>
92 <td valign="middle" nowrap>
93 &nbsp;<a class=menu target=Main href="../language/language.php"
94 onclick="top.restoreSession()"
95 title="Language Management"><?php xl('Language','e'); ?></a>&nbsp;
96 </td>
97 <?php } ?>
99 <?php if (acl_check('admin', 'super')) { ?>
100 <td valign="middle" nowrap>
101 &nbsp;<a class="menu" target=Main href="../super/edit_globals.php"
102 onclick="top.restoreSession()"
103 title="Global System Parameters"><?php xl('Globals','e'); ?></a>&nbsp;
104 </td>
105 <td valign="middle" nowrap>
106 &nbsp;<a class="menu" target=Main href="../super/edit_list.php"
107 onclick="top.restoreSession()"
108 title="Selection List Management"><?php xl('Lists','e'); ?></a>&nbsp;
109 </td>
110 <td valign="middle" nowrap>
111 &nbsp;<a class="menu" target=Main href="../super/edit_layout.php"
112 onclick="top.restoreSession()"
113 title="Form Layout Management"><?php xl('Layouts','e'); ?></a>&nbsp;
114 </td>
115 <td valign="middle" nowrap>
116 &nbsp;<a class="menu" target=Main href="../super/manage_site_files.php"
117 onclick="top.restoreSession()"
118 title="Site Files Management"><?php xl('Files','e'); ?></a>&nbsp;
119 </td>
120 <td valign="middle" nowrap>
121 &nbsp;<a class="menu" target=Main href="../main/backup.php"
122 onclick="top.restoreSession()"
123 title="System Backup"><?php xl('Backup','e'); ?></a>&nbsp;
124 </td>
125 <?php } ?>
127 <?php if (acl_check('admin', 'users')) { ?>
128 <td valign="middle" nowrap>
129 &nbsp;<a class=menu target=Main href="<?php echo $rootdir?>/logview/logview.php"
130 onclick="top.restoreSession()"
131 title="View Logs"><?php xl('Logs','e'); ?></a>&nbsp;
132 </td>
133 <?php } ?>
135 <?php if (! $GLOBALS['concurrent_layout']) { ?>
136 <td valign="middle" align="right" nowrap>
137 &nbsp;<a class=menu href="../main/main_screen.php" target="_top" class="menu"
138 onclick="top.restoreSession()"
139 title=<?php xl('Exit from Administration','e'); ?>><?php xl('Back','e');?></a>&nbsp;&nbsp;
140 </td>
141 <?php } ?>
143 </tr>
144 </table>
146 </form>
148 </body>
149 </html>