]> git.sur5r.net Git - bacula/bacula/blobdiff - gui/baculum/index.php
baculum: New Baculum API and Baculum Web
[bacula/bacula] / gui / baculum / index.php
index f64ca15ce6efce98995b6066e082351bbc08f582..054752f3994993699b9aa50be92cf9e88797272d 100644 (file)
@@ -3,7 +3,7 @@
  * Bacula(R) - The Network Backup Solution
  * Baculum   - Bacula web interface
  *
- * Copyright (C) 2013-2015 Marcin Haba
+ * Copyright (C) 2013-2016 Kern Sibbald
  *
  * The main author of Baculum is Marcin Haba.
  * The original author of Bacula is Kern Sibbald, with contributions
  *
  * Bacula(R) is a registered trademark of Kern Sibbald.
  */
-date_default_timezone_set('UTC');
-
-// Support for web servers which do not provide direct info about HTTP Basic auth to PHP superglobal $_SERVER array.
-if(!isset($_SERVER['PHP_AUTH_USER']) && !isset($_SERVER['PHP_AUTH_PW'])) {
-    list($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']) = explode(':', base64_decode(substr($_SERVER['HTTP_AUTHORIZATION'], 6)));
-}
 
+/*
+ * Constant is used to localize always valid document root directory
+ * Using for placing Baculum files in document root subdirectory
+ */
 define('APPLICATION_DIRECTORY', __DIR__);
 
-require_once('./protected/Pages/Requirements.php');
-new Requirements(__DIR__);
 require_once('./framework/prado.php');
 
+// Start application
 $application=new TApplication;
-Prado::using('Application.Portlets.BButton');
-Prado::using('Application.Portlets.BActiveButton');
 $application->run();
 ?>