updated user manual wiki page link for future 4.1.2
[openemr.git] / interface / main / main_navigation.php
blobbe5813ee8d2ca5b201582534bb5710693d39f99f
1 <?php
2 include_once("../globals.php");
3 include_once("../../library/acl.inc");
4 ?>
5 <html>
6 <head>
7 <title>Navigation</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="<?php echo $rootdir?>/main/finder/patient_finder.php">
16 <div id="nav_topmenu">
17 <table border="0" cellspacing="0" cellpadding="0" width="100%" height="100%">
18 <tr>
19 <td width="10%" nowrap>
20 <?php ///<a href="javascript:document.find_patient.action='finder/patient_finder_keyboard.php';document.find_patient.submit();" class='link'>Find Patient:</a> ?>
21 <input type="entry" size="10" name="patient" />
22 <select name="findBy" size=1>
23 <option value="Last" selected><?php xl ('Name','e'); ?></option>
24 <option value="Phone"><?php xl ('Phone','e'); ?></option>
25 <option value="ID"><?php xl ('ID','e'); ?></option>
26 <option value="SSN"><?php xl ('SSN','e'); ?></option>
27 <option value="DOB"><?php xl ('DOB','e'); ?></option>
28 </select>
29 </td>
31 <td width="5%" nowrap>
32 <a href="javascript:top.restoreSession();document.find_patient.action='<?php echo $rootdir?>/main/finder/patient_finder.php';document.find_patient.submit();"
33 class='link'>&nbsp;<?php xl('Find','e'); ?>&nbsp;<?php xl('Patient','e'); ?></a>
34 &nbsp;
35 </td>
37 <?php
38 if (acl_check('patients','demo','',array('write','addonly') )) {
40 <td align="center" nowrap>
41 &nbsp;<a class="menu" target=_top href="../new/new_patient.php" onclick="top.restoreSession()">
42 <?php xl('New','e'); ?>&nbsp;<?php xl('Patient','e'); ?></a>&nbsp;
43 </td>
44 <?php } ?>
46 <td align="center" nowrap>
47 &nbsp;<a href="../usergroup/user_info.php" target="Main" class="menu" onclick="top.restoreSession()">
48 <?php xl('Password','e'); ?></a>&nbsp;
49 </td>
51 <td align="center" nowrap>
52 &nbsp;<a href="../super/edit_globals.php?mode=user" target="Main" class="menu" onclick="top.restoreSession()">
53 <?php xl('Settings','e'); ?></a>&nbsp;
54 </td>
56 <?php if (acl_check('admin', 'calendar') || acl_check('admin', 'database') ||
57 acl_check('admin', 'forms') || acl_check('admin', 'practice') ||
58 acl_check('admin', 'users') || acl_check('admin', 'acl')) { ?>
59 <td align="center" nowrap>
60 &nbsp;<a class="menu" target=_top href="../usergroup/usergroup.php" onclick="top.restoreSession()">
61 <?php xl('Admin','e'); ?></a>&nbsp;
62 </td>
63 <?php } ?>
65 <td align="center" nowrap>
66 &nbsp;<a href="../reports/appointments_report.php" target="_new" class="menu"> <?php xl('Appts','e'); ?></a>&nbsp;&nbsp;
67 </td>
68 <td align="center" nowrap>
69 &nbsp;<a href="../reports/index.php" target="Main" class="menu" onclick="top.restoreSession()">
70 <?php xl('Reports','e'); ?></a>&nbsp;
71 </td>
73 <td align="center" nowrap>
74 &nbsp;<a href="onotes/office_comments.php" target="Main" class="menu" onclick="top.restoreSession()">
75 <?php xl('Notes','e'); ?></a>&nbsp;
76 </td>
78 <td align="center" nowrap>
79 &nbsp;<a href="../usergroup/addrbook_list.php" target="Main" class="menu" onclick="top.restoreSession()">
80 <?php xl('AB','e'); ?></a>&nbsp;
81 </td>
83 <?php
84 if ( (acl_check('patients','demo','',array('write','addonly') )) &&
85 is_readable("$webserver_root/custom/import.php")) {
87 <td align="center" nowrap>
88 &nbsp;<a href="<?php echo $web_root; ?>/custom/import.php" target="Main" class="menu"
89 onclick="top.restoreSession()"><?php xl('Import','e'); ?></a>&nbsp;
90 </td>
91 <?php } ?>
93 <?php
94 if ($GLOBALS['enable_hylafax'] || $GLOBALS['enable_scanner']) {
95 $faxcount = 0;
96 if ($GLOBALS['enable_hylafax']) {
97 // Count the number of faxes in the recvq:
98 $statlines = array();
99 exec("faxstat -r -l -h " . $GLOBALS['hylafax_server'], $statlines);
100 foreach ($statlines as $line) {
101 if (substr($line, 0, 1) == '-') ++$faxcount;
104 $faxcount = $faxcount ? "($faxcount)" : "";
106 <td align="center" nowrap>
107 &nbsp;<a href="../fax/faxq.php" target="Main" class="menu" onclick="top.restoreSession()">
108 <?php echo xl('Docs') . $faxcount; ?></a>&nbsp;
109 </td>
110 <?php } ?>
112 <?php if (acl_check('acct', 'rep') || acl_check('acct', 'eob') || acl_check('acct', 'bill')) { ?>
113 <td align="center" nowrap>
114 &nbsp;<a href="../billing/billing_report.php" target="Main" class="menu" onclick="top.restoreSession()">
115 <?php xl('Billing','e'); ?></a>&nbsp;
116 </td>
117 <?php } ?>
119 <?php if ($GLOBALS['athletic_team']) { ?>
121 <td align="center" nowrap>
122 &nbsp;<a href="../reports/players_report.php?embed=1" target="Main" class="menu" onclick="top.restoreSession()">
123 <?php xl('Roster','e'); ?></a>&nbsp;
124 </td>
125 <td align="center" nowrap>
126 &nbsp;<a href="main.php" target="Main" class="menu" onclick="top.restoreSession()">
127 <?php xl('Calendar','e'); ?></a>&nbsp;
128 </td>
130 <?php } else { ?>
132 <td align="center" nowrap>
133 &nbsp;<a href="main.php" target="Main" class="menu" onclick="top.restoreSession()">
134 <?php xl('Home','e'); ?></a>&nbsp;
135 </td>
137 <?php } ?>
139 <td align="center" nowrap>
140 &nbsp;<a href="../logout.php" target="_top" class="menu" onclick="top.restoreSession()">
141 <?php xl('Logout','e'); ?></a>&nbsp;&nbsp;
142 </td>
144 <td align="center" nowrap>
145 &nbsp;<a href="http://open-emr.org/wiki/index.php/OpenEMR_4.1.2_Users_Guide" target="_blank" class="menu">
146 <?php xl('Manual','e'); ?></a>&nbsp;&nbsp;
147 </td>
149 </tr>
150 </table>
151 </div>
153 </form>
155 </body>
156 </html>