acknowledgments update
[openemr.git] / interface / main / main_screen.php
blob41ce17e2b2dd526834364e733b6e36312db83073
1 <?php
2 /**
3 * The outside frame that holds all of the OpenEMR User Interface.
5 * LICENSE: This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://opensource.org/licenses/gpl-license.php>;.
16 * @package OpenEMR
17 * @author Brady Miller <brady@sparmy.com>
18 * @link http://www.open-emr.org
21 $fake_register_globals=false;
22 $sanitize_all_escapes=true;
24 /* Include our required headers */
25 require_once('../globals.php');
26 require_once("$srcdir/formdata.inc.php");
28 // Creates a new session id when load this outer frame
29 // (allows creations of separate OpenEMR frames to view patients concurrently
30 // on different browser frame/windows)
31 // This session id is used below in the restoreSession.php include to create a
32 // session cookie for this specific OpenEMR instance that is then maintained
33 // within the OpenEMR instance by calling top.restoreSession() whenever
34 // refreshing or starting a new script.
35 if (isset($_POST['new_login_session_management'])) {
36 // This is a new login, so create a new session id and remove the old session
37 session_regenerate_id(true);
39 else {
40 // This is not a new login, so create a new session id and do NOT remove the old session
41 session_regenerate_id(false);
44 $_SESSION["encounter"] = '';
46 // Fetch the password expiration date
47 $is_expired=false;
48 if($GLOBALS['password_expiration_days'] != 0){
49 $is_expired=false;
50 $q= (isset($_POST['authUser'])) ? $_POST['authUser'] : '';
51 $result = sqlStatement("select pwd_expiration_date from users where username = ?", array($q));
52 $current_date = date('Y-m-d');
53 $pwd_expires_date = $current_date;
54 if($row = sqlFetchArray($result)) {
55 $pwd_expires_date = $row['pwd_expiration_date'];
58 // Display the password expiration message (starting from 7 days before the password gets expired)
59 $pwd_alert_date = date('Y-m-d', strtotime($pwd_expires_date . '-7 days'));
61 if (strtotime($pwd_alert_date) != '' &&
62 strtotime($current_date) >= strtotime($pwd_alert_date) &&
63 (!isset($_SESSION['expiration_msg'])
64 or $_SESSION['expiration_msg'] == 0)) {
65 $is_expired = true;
66 $_SESSION['expiration_msg'] = 1; // only show the expired message once
70 if ($is_expired) {
71 //display the php file containing the password expiration message.
72 $frame1url = "pwd_expires_alert.php";
74 else if (!empty($_POST['patientID'])) {
75 $patientID = 0 + $_POST['patientID'];
76 $frame1url = "../patient_file/summary/demographics.php?set_pid=".attr($patientID);
78 else if ($GLOBALS['athletic_team']) {
79 $frame1url = "../reports/players_report.php?embed=1";
81 else if (isset($_GET['mode']) && $_GET['mode'] == "loadcalendar") {
82 $frame1url = "calendar/index.php?pid=" . attr($_GET['pid']);
83 if (isset($_GET['date'])) $frame1url .= "&date=" . attr($_GET['date']);
85 else if ($GLOBALS['concurrent_layout']) {
86 // new layout
87 if ($GLOBALS['default_top_pane']) {
88 $frame1url=attr($GLOBALS['default_top_pane']);
89 } else {
90 $frame1url = "main_info.php";
93 else {
94 // old layout
95 $frame1url = "main.php?mode=" . attr($_GET['mode']);
98 $nav_area_width = $GLOBALS['athletic_team'] ? '230' : '130';
99 if (!empty($GLOBALS['gbl_nav_area_width'])) $nav_area_width = $GLOBALS['gbl_nav_area_width'];
101 <html>
102 <head>
103 <title>
104 <?php echo text($openemr_name) ?>
105 </title>
106 <script type="text/javascript" src="../../library/topdialog.js"></script>
108 <script language='JavaScript'>
109 <?php require($GLOBALS['srcdir'] . "/restoreSession.php"); ?>
111 // This counts the number of frames that have reported themselves as loaded.
112 // Currently only left_nav and Title do this, so the maximum will be 2.
113 // This is used to determine when those frames are all loaded.
114 var loadedFrameCount = 0;
116 function allFramesLoaded() {
117 // Change this number if more frames participate in reporting.
118 return loadedFrameCount >= 2;
120 </script>
122 </head>
124 <?php
126 // Please keep in mind that border (mozilla) and framespacing (ie) are the
127 // same thing. use both.
128 // frameborder specifies a 3d look, not whether there are borders.
130 if ($GLOBALS['concurrent_layout']) {
131 // start new layout
132 if (empty($GLOBALS['gbl_tall_nav_area'])) {
133 // not tall nav area ?>
134 <frameset rows='<?php echo attr($GLOBALS['titleBarHeight']) + 5 ?>,*' frameborder='1' border='1' framespacing='1' onunload='imclosing()'>
135 <frame src='main_title.php' name='Title' scrolling='no' frameborder='1' noresize />
136 <frameset cols='<?php echo attr($nav_area_width); ?>,*' id='fsbody' frameborder='1' border='4' framespacing='4'>
137 <frameset rows='*,0' frameborder='0' border='0' framespacing='0'>
138 <frame src='left_nav.php' name='left_nav' />
139 <frame src='daemon_frame.php' name='Daemon' scrolling='no' frameborder='0'
140 border='0' framespacing='0' />
141 </frameset>
142 <?php if (empty($GLOBALS['athletic_team'])) { ?>
143 <frameset rows='60%,*' id='fsright' bordercolor='#999999' frameborder='1'>
144 <?php } else { ?>
145 <frameset rows='100%,*' id='fsright' bordercolor='#999999' frameborder='1'>
146 <?php } ?>
147 <frame src='<?php echo $frame1url ?>' name='RTop' scrolling='auto' />
148 <frame src='messages/messages.php?form_active=1' name='RBot' scrolling='auto' />
149 </frameset>
150 </frameset>
151 </frameset>
153 <?php } else { // use tall nav area ?>
155 <frameset cols='<?php echo attr($nav_area_width); ?>,*' id='fsbody' frameborder='1' border='4' framespacing='4' onunload='imclosing()'>
156 <frameset rows='*,0' frameborder='0' border='0' framespacing='0'>
157 <frame src='left_nav.php' name='left_nav' />
158 <frame src='daemon_frame.php' name='Daemon' scrolling='no' frameborder='0'
159 border='0' framespacing='0' />
160 </frameset>
161 <frameset rows='<?php echo attr($GLOBALS['titleBarHeight']) + 5 ?>,*' frameborder='1' border='1' framespacing='1'>
162 <frame src='main_title.php' name='Title' scrolling='no' frameborder='1' />
163 <?php if (empty($GLOBALS['athletic_team'])) { ?>
164 <frameset rows='60%,*' id='fsright' bordercolor='#999999' frameborder='1' border='4' framespacing='4'>
165 <?php } else { ?>
166 <frameset rows='100%,*' id='fsright' bordercolor='#999999' frameborder='1' border='4' framespacing='4'>
167 <?php } ?>
168 <frame src='<?php echo $frame1url ?>' name='RTop' scrolling='auto' />
169 <frame src='messages/messages.php?form_active=1' name='RBot' scrolling='auto' />
170 </frameset>
171 </frameset>
172 </frameset>
174 <?php } // end tall nav area ?>
176 <?php } else { // start old layout ?>
178 </head>
179 <frameset rows="<?php echo attr($GLOBALS[navBarHeight]).",".attr($GLOBALS[titleBarHeight]) ?>,*"
180 cols="*" frameborder="no" border="0" framespacing="0"
181 onunload="imclosing()">
182 <frame src="main_navigation.php" name="Navigation" scrolling="no" noresize frameborder="no">
183 <frame src="main_title.php" name="Title" scrolling="no" noresize frameborder="no">
184 <frame src='<?php echo $frame1url ?>' name='Main' scrolling='auto' noresize frameborder='no'>
185 </frameset>
186 <noframes><body bgcolor="#FFFFFF">
187 <?php echo xlt('Frame support required'); ?>
188 </body></noframes>
190 <?php } // end old layout ?>
192 </html>