Activated danish and swedish languages
[fa-stable.git] / install / isession.inc
1 <?php
2 /**********************************************************************
3         Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL,
5         as published by the Free Software Foundation, either version 3
6         of the License, or (at your option) any later version.
7         This program is distributed in the hope that it will be useful,
8         but WITHOUT ANY WARRANTY; without even the implied warranty of
9         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10         See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 function output_html($text)
13 {
14         global $before_box, $Ajax, $messages;
15         // Fatal errors are not send to error_handler,
16         // so we must check the output
17         if ($text && preg_match('/\bFatal error(<.*?>)?:(.*)/i', $text, $m)) {
18                 $Ajax->aCommands = array();  // Don't update page via ajax on errors
19                 $text = preg_replace('/\bFatal error(<.*?>)?:(.*)/i','', $text);
20                 $messages[] = array(E_ERROR, $m[2], null, null);
21         }
22         $Ajax->run();
23         return  in_ajax() ? fmt_errors() : ($before_box.fmt_errors().$text);
24 }
25
26 //-----------------------------------------------------------------------------
27 //      Removing magic quotes from nested arrays/variables
28 //
29 function strip_quotes($data)
30 {
31         if(get_magic_quotes_gpc()) {
32                 if(is_array($data)) {
33                         foreach($data as $k => $v) {
34                                 $data[$k] = strip_quotes($data[$k]);
35                         }
36                 } else
37                         return stripslashes($data);
38         }
39         return $data;
40 }
41
42 function check_page_security($page_security)
43 {
44 }
45 //============================================================================
46 if (!isset($path_to_root))
47 {
48         $path_to_root = ".";
49 }
50
51 // Prevent register_globals vulnerability
52 if (isset($_GET['path_to_root']) || isset($_POST['path_to_root']))
53         die("Restricted access");
54
55 include_once($path_to_root . "/includes/current_user.inc");
56 include_once($path_to_root . "/includes/lang/language.php");
57 include_once($path_to_root . "/includes/ajax.inc");
58 include_once($path_to_root . "/includes/ui/ui_msgs.inc");
59 include_once($path_to_root . "/includes/prefs/sysprefs.inc");
60
61 session_name('FAinstall');
62 session_start();
63
64 // this is to fix the "back-do-you-want-to-refresh" issue - thanx PHPFreaks
65 header("Cache-control: private");
66
67 include_once($path_to_root . "/config.default.php");
68
69 $inst_langs = array(
70   'C' => array ( 'name' => 'English',   'code' => 'C',          'encoding' => 'iso-8859-1'),
71   'da_DK' => array ( 'name' => 'Danske',        'code' => 'da_DK',      'encoding' => 'iso-8859-1'),
72   'pl_PL' => array ( 'name' => 'Polski',        'code' => 'pl_PL',      'encoding' => 'iso-8859-2'),
73   'sv_SE' => array ( 'name' => 'Svenska',       'code' => 'sv_SE',      'encoding' => 'iso-8859-1'),
74 );
75
76 $Ajax = new Ajax();
77
78 get_text_init();
79
80 $i_lang = isset($_POST['inst_lang']) ? $_POST['inst_lang'] : 
81         (isset($_SESSION['inst_set']['inst_lang']) ? $_SESSION['inst_set']['inst_lang'] : 'C');
82
83 // Page Initialisation
84 if (!isset($_SESSION['language']) || !method_exists($_SESSION['language'], 'set_language')
85         || $_SESSION['language']->code != $i_lang) 
86 {
87         $l = array_search_value($i_lang, $inst_langs,  'code');
88         $_SESSION['language'] = new language($l['name'], $l['code'], $l['encoding'],
89          isset($l['rtl']) ? 'rtl' : 'ltr');
90 }
91
92 $_SESSION['language']->set_language($_SESSION['language']->code);
93 $_SESSION['get_text']->add_domain( $_SESSION['language']->code, $path_to_root."/install/lang");
94
95 include_once($path_to_root . "/version.php");
96 include_once($path_to_root . "/includes/main.inc");
97
98 // js/php validation rules container
99 $Validate = array();
100 // bindings for editors
101 $Editors = array();
102 // page help. Currently help for function keys.
103 $Pagehelp = array();
104
105 //$Ajax = new Ajax();
106
107 // intercept all output to destroy it in case of ajax call
108 register_shutdown_function('end_flush');
109 ob_start('output_html',0);
110
111 // colect all error msgs
112 set_error_handler('error_handler' /*, errtypes */);
113
114 if (!isset($_SESSION["wa_current_user"]))
115         $_SESSION["wa_current_user"] = new current_user();
116
117 $SysPrefs = &$_SESSION['SysPrefs'];
118
119 // POST vars cleanup needed for direct reuse.
120 // We quote all values later with db_escape() before db update.
121         $_POST = strip_quotes($_POST);
122
123 ?>