Code

Removed notifications from config
[gosa.git] / gosa-core / html / setup.php
1 <?php
2 /*
3  * This code is part of GOsa (http://www.gosa-project.org)
4  * Copyright (C) 2003-2008 GONICUS GmbH
5  *
6  * ID: $$Id$$
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
23 /* Get standard functions */
24 require_once ("../include/php_setup.inc");
25 require_once ("functions.inc");
27 require_once("../setup/class_setup.inc");
28 require_once("../setup/class_setupStep.inc");
29 require_once("../setup/class_setupStep_Welcome.inc");
30 require_once("../setup/class_setupStep_Language.inc");
31 require_once("../setup/class_setupStep_Checks.inc");
32 require_once("../setup/class_setupStep_License.inc");
33 require_once("../setup/class_setupStep_Ldap.inc");
34 require_once("../setup/class_setupStep_Config1.inc");
35 require_once("../setup/class_setupStep_Config2.inc");
36 require_once("../setup/class_setupStep_Config3.inc");
37 require_once("../setup/class_setupStep_Schema.inc");
38 require_once("../setup/class_setupStep_Migrate.inc");
39 require_once("../setup/class_setupStep_Feedback.inc");
40 require_once("../setup/class_setupStep_Finish.inc");
43 /* Set header */
44 header("Content-type: text/html; charset=UTF-8");
46 /* Set cookie lifetime to one day (The parameter is in seconds ) */
47 session_set_cookie_params(24*60*60);
48 session_cache_expire(60*24);  // default is 180
49 ini_set("session.gc_maxlifetime",24*60*60);
51 /* Start session */
52 session::start();
53 session::set('DEBUGLEVEL',1);
54 session::set('errorsAlreadyPosted',array());
56 /* Check for js */
57 if (!isset($_GET['js']) && !session::is_set('js')){
58   echo '<script language="JavaScript" type="text/javascript">';
59   echo '  location = "setup.php?js=true";';
60   echo '</script>';
62   session::set('js',FALSE);
63 } elseif(isset($_GET['js'])) {
64   session::set('js',TRUE);
65 }
67 /* Attribute initialization, reset errors */
68 session::set('errors',"");
69 session::set('errorsAlreadyPosted',array());
70 session::set('LastError',"");
72 /* Set template compile directory */
73 $smarty->compile_dir= '/var/spool/gosa/';
75 /* Check for compile directory */
76 if (!(is_dir($smarty->compile_dir) && is_writable($smarty->compile_dir))){
77   msg_dialog::display(_("Smarty"),sprintf(_("Directory '%s' specified as compile directory is not accessible!"),
78     $smarty->compile_dir),FATAL_ERROR_DIALOG);
79   exit();
80 }
82 /* Get posted language */
83 if(!session::is_set('lang')){
84   session::set('lang',get_browser_language());
85 }
86 if(isset($_POST['lang_selected'])){
87   if($_POST['lang_selected'] != ""){
88     session::set('lang',$_POST['lang_selected']);
89   }else{
90     session::set('lang',get_browser_language());
91   }
92 }
94 $lang = session::get('lang');
95 /* Append .UTF-8 to language string if necessary */
96 if(!preg_match("/utf(-)8$/i",$lang)){
97   $lang .= ".UTF-8";
98 }
99 putenv("LANGUAGE=");
100 putenv("LANG=$lang");
101 setlocale(LC_ALL, $lang);
102 $GLOBALS['t_language']= $lang;
103 $GLOBALS['t_gettext_message_dir'] = $BASE_DIR.'/locale/';
105 /* Set the text domain as 'messages' */
106 $domain = 'messages';
107 bindtextdomain($domain, LOCALE_DIR);
108 textdomain($domain);
111 /* Call setup */
112 $display = "";
113 require_once("../setup/main.inc");
115 $smarty->assign("date", date("l, dS F Y H:i:s O"));
116 $header= "<!-- headers.tpl-->".$smarty->fetch(get_template_path('setup_headers.tpl'));
120 /* Set focus to the error button if we've an error message */
121 $focus= "";
122 if (session::is_set('errors') && session::get('errors') != ""){
123   $focus= '<script language="JavaScript" type="text/javascript">';
124   $focus.= 'document.forms[0].error_accept.focus();';
125   $focus.= '</script>';
128 $focus= '<script language="JavaScript" type="text/javascript">';
129 $focus.= 'next_msg_dialog();';
130 $focus.= '</script>';
132 /* show web frontend */
133 $setup = session::get('setup');
134 $smarty->assign("contents"  , $display);
135 $smarty->assign("navigation", $setup->get_navigation_html());
136 $smarty->assign("header", $setup->get_header_html());
137 $smarty->assign("bottom", $focus.$setup->get_bottom_html());
138 $smarty->assign("msg_dialogs", msg_dialog::get_dialogs());
140 if ($error_collector != ""){
141   $smarty->assign("php_errors", preg_replace("/%BUGBODY%/",$error_collector_mailto,$error_collector)."</div>");
142 } else {
143   $smarty->assign("php_errors", "");
146 $smarty->assign("version",get_gosa_version());
148 echo $header.$smarty->fetch("../setup/setup_frame.tpl");
149 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
150 ?>