| 
									
										
										
										
											2009-09-07 11:07:59 +00:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2010-01-08 23:47:54 +00:00
										 |  |  |   ob_start(); | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2007-04-03 14:10:23 +00:00
										 |  |  |   ini_set('allow_url_fopen', 0); | 
					
						
							| 
									
										
										
										
											2007-11-23 11:37:28 +00:00
										 |  |  |   ini_set('display_errors', 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-11 13:59:52 +00:00
										 |  |  | #$debug=1;
 | 
					
						
							| 
									
										
										
										
											2009-10-02 13:20:24 +00:00
										 |  |  | if($debug) { | 
					
						
							| 
									
										
										
										
											2007-04-03 14:10:23 +00:00
										 |  |  |   ini_set('display_errors', 1); | 
					
						
							|  |  |  |   ini_set('display_startup_errors', 1); | 
					
						
							|  |  |  |   ini_set('log_errors', 1); | 
					
						
							|  |  |  |   ini_set('error_reporting', E_ALL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-27 14:44:38 +00:00
										 |  |  |   include("../includes/defaults.inc.php"); | 
					
						
							| 
									
										
										
										
											2007-04-03 14:10:23 +00:00
										 |  |  |   include("../config.php");  | 
					
						
							|  |  |  |   include("../includes/functions.php");   | 
					
						
							| 
									
										
										
										
											2009-10-02 13:20:24 +00:00
										 |  |  |   include("includes/functions.inc.php"); | 
					
						
							| 
									
										
										
										
											2010-02-20 17:37:42 +00:00
										 |  |  |   include("includes/authenticate.inc.php"); | 
					
						
							| 
									
										
										
										
											2010-04-24 14:23:16 +00:00
										 |  |  |   if($_SESSION['authenticated']) { | 
					
						
							| 
									
										
										
										
											2010-04-24 22:43:25 +00:00
										 |  |  |     # Load permissions used my devicepermitted() and interfacepermitted()
 | 
					
						
							| 
									
										
										
										
											2010-04-24 14:23:16 +00:00
										 |  |  |     $permissions = permissions_cache($_SESSION['user_id']); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2007-04-03 14:10:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-24 14:23:16 +00:00
										 |  |  |   $start = utime(); | 
					
						
							| 
									
										
										
										
											2007-04-03 14:10:23 +00:00
										 |  |  |   $now = time(); | 
					
						
							|  |  |  |   $day = time() - (24 * 60 * 60); | 
					
						
							|  |  |  |   $twoday = time() - (2 * 24 * 60 * 60); | 
					
						
							|  |  |  |   $week = time() - (7 * 24 * 60 * 60); | 
					
						
							|  |  |  |   $month = time() - (31 * 24 * 60 * 60); | 
					
						
							|  |  |  |   $year = time() - (365 * 24 * 60 * 60); | 
					
						
							| 
									
										
										
										
											2010-03-27 22:20:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   # Load the settings for Multi-Tenancy.
 | 
					
						
							|  |  |  |   if (is_array($config['branding'])) { | 
					
						
							|  |  |  |       if ($config['branding'][$_SERVER['SERVER_NAME']]) { | 
					
						
							|  |  |  |           foreach ($config['branding'][$_SERVER['SERVER_NAME']] as $confitem => $confval) { | 
					
						
							|  |  |  |               eval("\$config['" . $confitem . "'] = \$confval;"); | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |       } else { | 
					
						
							|  |  |  |           foreach ($config['branding']['default'] as $confitem => $confval) { | 
					
						
							|  |  |  |               eval("\$config['" . $confitem . "'] = \$confval;"); | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |   } else { | 
					
						
							| 
									
										
										
										
											2010-04-11 08:39:19 +00:00
										 |  |  | #      echo "Please check config.php.default and adjust your settings to reflect the new Multi-Tenancy configuration.";
 | 
					
						
							| 
									
										
										
										
											2010-03-27 22:20:57 +00:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2007-04-03 14:10:23 +00:00
										 |  |  | ?>
 | 
					
						
							| 
									
										
										
										
											2010-01-09 21:47:08 +00:00
										 |  |  | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | 
					
						
							| 
									
										
										
										
											2007-04-03 14:10:23 +00:00
										 |  |  | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> | 
					
						
							|  |  |  | <head> | 
					
						
							| 
									
										
										
										
											2008-10-30 21:27:48 +00:00
										 |  |  |   <title><?php echo($config['page_title']); ?></title>
 | 
					
						
							| 
									
										
										
										
											2008-03-15 17:58:15 +00:00
										 |  |  |   <base href="<?php echo($config['base_url']); ?>" /> | 
					
						
							| 
									
										
										
										
											2009-03-17 20:29:54 +00:00
										 |  |  |   <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | 
					
						
							|  |  |  |   <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> | 
					
						
							|  |  |  |   <meta http-equiv="content-language" content="en-us" /> | 
					
						
							| 
									
										
										
										
											2008-03-23 21:32:54 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  |   if($config['page_refresh']) { echo("<meta http-equiv='refresh' content='".$config['page_refresh']."'>"); } | 
					
						
							|  |  |  | ?>
 | 
					
						
							| 
									
										
										
										
											2010-01-09 00:17:02 +00:00
										 |  |  |   <link href="<?php  echo($config['stylesheet']);  ?>" rel="stylesheet" type="text/css" /> | 
					
						
							| 
									
										
										
										
											2008-03-15 17:58:15 +00:00
										 |  |  |   <link rel="shortcut icon" href="<?php  echo($config['favicon']);  ?>" /> | 
					
						
							| 
									
										
										
										
											2010-01-09 00:17:02 +00:00
										 |  |  |   <link rel="stylesheet" href="css/mktree.css" type="text/css" /> | 
					
						
							| 
									
										
										
										
											2007-04-03 14:10:23 +00:00
										 |  |  | </head> | 
					
						
							| 
									
										
										
										
											2010-01-09 00:17:02 +00:00
										 |  |  | <body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0"> | 
					
						
							| 
									
										
										
										
											2010-01-10 18:47:32 +00:00
										 |  |  |   <script type="text/javascript" src="js/mktree.js"></script> | 
					
						
							|  |  |  |   <script type="text/javascript"> | 
					
						
							| 
									
										
										
										
											2007-04-03 14:10:23 +00:00
										 |  |  | <!-- Begin | 
					
						
							|  |  |  | function popUp(URL) { | 
					
						
							|  |  |  |   day = new Date(); | 
					
						
							|  |  |  |   id = day.getTime(); | 
					
						
							|  |  |  |   eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=550,height=600');");  | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | // End -->
 | 
					
						
							| 
									
										
										
										
											2010-01-10 18:47:32 +00:00
										 |  |  |   </script> | 
					
						
							|  |  |  |   <script type="text/javascript" src="js/overlib.js"></script> | 
					
						
							|  |  |  |   <div id="center"> | 
					
						
							| 
									
										
										
										
											2007-04-03 14:10:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-14 15:25:49 +00:00
										 |  |  |   <?php include("includes/".$config['web_header']); ?>
 | 
					
						
							| 
									
										
										
										
											2009-06-19 10:43:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-09 21:47:08 +00:00
										 |  |  | <?php if($_SESSION['authenticated']) {include("includes/print-menubar.php");} else {echo('<hr color="#444444" />');} ?>
 | 
					
						
							| 
									
										
										
										
											2007-04-03 14:10:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-10 18:47:32 +00:00
										 |  |  |     <div class="clearer"></div> | 
					
						
							| 
									
										
										
										
											2007-04-03 14:10:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-10 18:47:32 +00:00
										 |  |  |     <div class="content-mat" style="border: 1px none #fcc;"> | 
					
						
							|  |  |  |       <div id="content" style="border: 1px none #ccc; min-height:650px;"> | 
					
						
							|  |  |  |         <div style="margin: 7px;"></div> | 
					
						
							| 
									
										
										
										
											2007-04-03 14:10:23 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  |   if($_SESSION['authenticated']) { | 
					
						
							| 
									
										
										
										
											2008-07-22 08:24:34 +00:00
										 |  |  |     ## Authenticated. Print a page.
 | 
					
						
							| 
									
										
										
										
											2010-01-16 23:16:58 +00:00
										 |  |  |     if(isset($_GET['page']) && !strstr("..", $_GET['page']) &&  is_file("pages/" . $_GET['page'] . ".php")) { | 
					
						
							| 
									
										
										
										
											2007-04-03 14:10:23 +00:00
										 |  |  |       include("pages/" . $_GET['page'] . ".php"); | 
					
						
							|  |  |  |     } else {  | 
					
						
							| 
									
										
										
										
											2010-04-20 15:46:17 +00:00
										 |  |  |       if(isset($config['front_page'])) { | 
					
						
							| 
									
										
										
										
											2008-11-04 12:34:46 +00:00
										 |  |  |         include($config['front_page']); | 
					
						
							|  |  |  |       } else { | 
					
						
							|  |  |  |         include("pages/front/default.php"); | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2007-04-03 14:10:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-07-22 08:24:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-03 14:10:23 +00:00
										 |  |  |   } else { | 
					
						
							| 
									
										
										
										
											2008-07-22 08:24:34 +00:00
										 |  |  |     ## Not Authenticated. Print login.
 | 
					
						
							| 
									
										
										
										
											2007-04-03 14:10:23 +00:00
										 |  |  |     include("pages/logon.inc"); | 
					
						
							|  |  |  |     exit; | 
					
						
							|  |  |  |   }  | 
					
						
							|  |  |  | ?>
 | 
					
						
							|  |  |  |         </div> | 
					
						
							| 
									
										
										
										
											2010-01-10 18:47:32 +00:00
										 |  |  |       <div class="clearer"></div> | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  |   </div> | 
					
						
							| 
									
										
										
										
											2007-04-03 14:10:23 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  |     $end = utime(); $run = $end - $start; | 
					
						
							|  |  |  |     $gentime = substr($run, 0, 5); | 
					
						
							| 
									
										
										
										
											2010-03-27 22:20:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-09 19:22:03 +00:00
										 |  |  |     echo '<br />  <div id="footer">' . (isset($config['footer']) ? $config['footer'] : ''); | 
					
						
							| 
									
										
										
										
											2010-03-30 20:28:02 +00:00
										 |  |  |     echo '<br />Powered by <a href="http://www.observernms.org" target="_blank">ObserverNMS ' . $config['version']; | 
					
						
							| 
									
										
										
										
											2010-03-27 22:20:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-11 17:59:58 +00:00
										 |  |  |     if (file_exists('.svn/entries')) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       $svn = File('.svn/entries'); | 
					
						
							|  |  |  |       echo '-SVN r' . trim($svn[3]); | 
					
						
							|  |  |  |       unset($svn); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-03-27 22:20:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-30 20:28:02 +00:00
										 |  |  |     echo '</a>. Copyright © 2006-'. date("Y"). ' by Adam Armstrong. All rights reserved.'; | 
					
						
							| 
									
										
										
										
											2010-03-27 22:20:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if ($config['page_gen']) { | 
					
						
							|  |  |  |         echo '<br />Generated in ' . $gentime . ' seconds.'; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     echo '</div>'; | 
					
						
							| 
									
										
										
										
											2007-04-03 14:10:23 +00:00
										 |  |  | ?>
 | 
					
						
							|  |  |  | </body> | 
					
						
							|  |  |  | </html> | 
					
						
							|  |  |  | 
 |