migrated ubiquitous libraries to composer autoloader (#421)
[openemr.git] / interface / main / main_screen.php
blobbf859970d3194b1731cd64d3479f66b76d3be254
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');
27 // Creates a new session id when load this outer frame
28 // (allows creations of separate OpenEMR frames to view patients concurrently
29 // on different browser frame/windows)
30 // This session id is used below in the restoreSession.php include to create a
31 // session cookie for this specific OpenEMR instance that is then maintained
32 // within the OpenEMR instance by calling top.restoreSession() whenever
33 // refreshing or starting a new script.
34 if (isset($_POST['new_login_session_management'])) {
35 // This is a new login, so create a new session id and remove the old session
36 session_regenerate_id(true);
38 else {
39 // This is not a new login, so create a new session id and do NOT remove the old session
40 session_regenerate_id(false);
43 $_SESSION["encounter"] = '';
45 // Fetch the password expiration date
46 $is_expired=false;
47 if($GLOBALS['password_expiration_days'] != 0){
48 $is_expired=false;
49 $q= (isset($_POST['authUser'])) ? $_POST['authUser'] : '';
50 $result = sqlStatement("select pwd_expiration_date from users where username = ?", array($q));
51 $current_date = date('Y-m-d');
52 $pwd_expires_date = $current_date;
53 if($row = sqlFetchArray($result)) {
54 $pwd_expires_date = $row['pwd_expiration_date'];
57 // Display the password expiration message (starting from 7 days before the password gets expired)
58 $pwd_alert_date = date('Y-m-d', strtotime($pwd_expires_date . '-7 days'));
60 if (strtotime($pwd_alert_date) != '' &&
61 strtotime($current_date) >= strtotime($pwd_alert_date) &&
62 (!isset($_SESSION['expiration_msg'])
63 or $_SESSION['expiration_msg'] == 0)) {
64 $is_expired = true;
65 $_SESSION['expiration_msg'] = 1; // only show the expired message once
69 if ($is_expired) {
70 //display the php file containing the password expiration message.
71 $frame1url = "pwd_expires_alert.php";
72 $frame1target = "adm";
74 else if (!empty($_POST['patientID'])) {
75 $patientID = 0 + $_POST['patientID'];
76 if (empty($_POST['encounterID'])) {
77 // Open patient summary screen (without a specific encounter)
78 $frame1url = "../patient_file/summary/demographics.php?set_pid=".attr($patientID);
79 $frame1target = "pat";
81 else {
82 // Open patient summary screen with a specific encounter
83 $encounterID = 0 + $_POST['encounterID'];
84 $frame1url = "../patient_file/summary/demographics.php?set_pid=".attr($patientID)."&set_encounterid=".attr($encounterID);
85 $frame1target = "pat";
88 else if (isset($_GET['mode']) && $_GET['mode'] == "loadcalendar") {
89 $frame1url = "calendar/index.php?pid=" . attr($_GET['pid']);
90 if (isset($_GET['date'])) $frame1url .= "&date=" . attr($_GET['date']);
91 $frame1target = "cal";
93 else {
94 // standard layout
95 if ($GLOBALS['default_top_pane']) {
96 $frame1url=attr($GLOBALS['default_top_pane']);
97 $map_paths_to_targets = array(
98 'main_info.php' => ('cal'),
99 '../new/new.php' => ('pat'),
100 '../../interface/main/finder/dynamic_finder.php' => ('pat'),
101 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => ('flb')
103 $frame1target = $map_paths_to_targets[$GLOBALS['default_top_pane']];
104 if (empty($frame1target)) $frame1target = "msc";
105 } else {
106 $frame1url = "main_info.php";
107 $frame1target = "cal";
111 $nav_area_width = '130';
112 if (!empty($GLOBALS['gbl_nav_area_width'])) $nav_area_width = $GLOBALS['gbl_nav_area_width'];
114 // This is where will decide whether to use tabs layout or non-tabs layout
115 // Will also set Session variables to communicate settings to tab layout
116 if ($GLOBALS['new_tabs_layout']) {
117 $_SESSION['frame1url'] = $frame1url;
118 $_SESSION['frame1target'] = $frame1target;
119 header('Location: '.$web_root."/interface/main/tabs/main.php");
120 exit();
124 <html>
125 <head>
126 <title>
127 <?php echo text($openemr_name) ?>
128 </title>
129 <script type="text/javascript" src="<?php echo $GLOBALS['assets_static_relative']; ?>/jquery-min-1-9-1/index.js"></script>
130 <script type="text/javascript" src="../../library/topdialog.js"></script>
132 <link rel="shortcut icon" href="<?php echo $GLOBALS['images_static_relative']; ?>/favicon.ico" />
134 <script language='JavaScript'>
136 // Flag that tab mode is off
137 var tab_mode=false;
139 <?php require($GLOBALS['srcdir'] . "/restoreSession.php"); ?>
141 // Since this should be the parent window, this is to prevent calls to the
142 // window that opened this window. For example when a new window is opened
143 // from the Patient Flow Board or the Patient Finder.
144 window.opener = null;
146 // This flag indicates if another window or frame is trying to reload the login
147 // page to this top-level window. It is set by javascript returned by auth.inc
148 // and is checked by handlers of beforeunload events.
149 var timed_out = false;
151 // This counts the number of frames that have reported themselves as loaded.
152 // Currently only left_nav and Title do this, so the maximum will be 2.
153 // This is used to determine when those frames are all loaded.
154 var loadedFrameCount = 0;
156 function allFramesLoaded() {
157 // Change this number if more frames participate in reporting.
158 return loadedFrameCount >= 2;
160 </script>
162 </head>
164 <?php
166 * for RTL layout we need to change order of frames in framesets
168 $lang_dir = $_SESSION['language_direction'];
170 $sidebar_tpl = "<frameset rows='*,0' frameborder='0' border='0' framespacing='0'>
171 <frame src='left_nav.php' name='left_nav' />
172 <frame src='daemon_frame.php' name='Daemon' scrolling='no' frameborder='0'
173 border='0' framespacing='0' />
174 </frameset>";
176 $main_tpl = "<frameset rows='60%,*' id='fsright' bordercolor='#999999' frameborder='1'>" ;
177 $main_tpl .= "<frame src='". $frame1url ."' name='RTop' scrolling='auto' />
178 <frame src='messages/messages.php?form_active=1' name='RBot' scrolling='auto' /></frameset>";
180 // Please keep in mind that border (mozilla) and framespacing (ie) are the
181 // same thing. use both.
182 // frameborder specifies a 3d look, not whether there are borders.
184 if (empty($GLOBALS['gbl_tall_nav_area'])) {
185 // not tall nav area ?>
186 <frameset rows='<?php echo attr($GLOBALS['titleBarHeight']) + 5 ?>,*' frameborder='1' border='1' framespacing='1' onunload='imclosing()'>
187 <frame src='main_title.php' name='Title' scrolling='no' frameborder='1' noresize />
188 <?php if($lang_dir != 'rtl'){ ?>
190 <frameset cols='<?php echo attr($nav_area_width) . ',*'; ?>' id='fsbody' frameborder='1' border='4' framespacing='4'>
191 <?php echo $sidebar_tpl ?>
192 <?php echo $main_tpl ?>
193 </frameset>
195 <?php }else{ ?>
197 <frameset cols='<?php echo '*,' . attr($nav_area_width); ?>' id='fsbody' frameborder='1' border='4' framespacing='4'>
198 <?php echo $main_tpl ?>
199 <?php echo $sidebar_tpl ?>
200 </frameset>
202 <?php }?>
204 </frameset>
205 </frameset>
207 <?php } else { // use tall nav area ?>
209 <frameset cols='<?php echo attr($nav_area_width); ?>,*' id='fsbody' frameborder='1' border='4' framespacing='4' onunload='imclosing()'>
210 <frameset rows='*,0' frameborder='0' border='0' framespacing='0'>
211 <frame src='left_nav.php' name='left_nav' />
212 <frame src='daemon_frame.php' name='Daemon' scrolling='no' frameborder='0'
213 border='0' framespacing='0' />
214 </frameset>
215 <frameset rows='<?php echo attr($GLOBALS['titleBarHeight']) + 5 ?>,*' frameborder='1' border='1' framespacing='1'>
216 <frame src='main_title.php' name='Title' scrolling='no' frameborder='1' />
217 <frameset rows='60%,*' id='fsright' bordercolor='#999999' frameborder='1' border='4' framespacing='4'>
218 <frame src='<?php echo $frame1url ?>' name='RTop' scrolling='auto' />
219 <frame src='messages/messages.php?form_active=1' name='RBot' scrolling='auto' />
220 </frameset>
221 </frameset>
222 </frameset>
224 <?php } // end tall nav area ?>
226 </html>