Oops, this was not for that skin
[platal.git] / include / globals.inc.php.in
CommitLineData
0337d704 1<?php
2/***************************************************************************
5ddeb07c 3 * Copyright (C) 2003-2007 Polytechnique.org *
0337d704 4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
f1ca33de 22class PlatalGlobals
0337d704 23{
612a2d8a 24 public $session;
0337d704 25
26 /** The x.org version */
612a2d8a 27 public $version = '@VERSION@';
28 public $debug = 0;
0337d704 29
30 /** db params */
612a2d8a 31 public $dbdb = 'x4dat';
32 public $dbhost = 'localhost';
33 public $dbuser = 'x4dat';
34 public $dbpwd = 'x4dat';
35 public $dbcharset = 'utf8';
72542de0 36
25962601 37 /** default skin */
38 public $skin;
39 public $register_skin;
40
0337d704 41 /** paths */
612a2d8a 42 public $baseurl;
43 public $spoolroot;
0337d704 44
612a2d8a 45 public $locale;
46 public $timezone;
d941feeb 47
612a2d8a 48 public function __construct($sess)
0337d704 49 {
72542de0 50 $this->session = $sess;
51
52 $base = empty($_SERVER['HTTPS']) ? 'http://' : 'https://';
94f6c381 53 $this->baseurl = @trim($base.$_SERVER['SERVER_NAME'].dirname($_SERVER['PHP_SELF']), '/');
67952900 54 $this->spoolroot = dirname(dirname(__FILE__));
0337d704 55
ea6398d1 56 $this->read_config();
ea6398d1 57 $this->setlocale();
f1ca33de 58 }
59
612a2d8a 60 private function read_ini_file($filename)
0337d704 61 {
d941feeb 62 $array = parse_ini_file($filename, true);
0337d704 63 if (!is_array($array)) {
64 return;
65 }
d941feeb 66 foreach ($array as $cat => $conf) {
0337d704 67 $c = strtolower($cat);
d941feeb 68 foreach ($conf as $k => $v) {
1a013db7 69 if ($c == 'core' && property_exists($this, $k)) {
d941feeb 70 $this->$k=$v;
0337d704 71 } else {
d941feeb 72 if (!isset($this->$c)) {
73 $this->$c = new stdClass;
74 }
75 $this->$c->$k = $v;
0337d704 76 }
77 }
78 }
79 }
80
612a2d8a 81 private function read_config()
d941feeb 82 {
83 $this->read_ini_file($this->spoolroot.'/configs/platal.ini');
d941feeb 84 $this->read_ini_file($this->spoolroot.'/configs/platal.conf');
85 }
86
612a2d8a 87 private function setlocale()
0337d704 88 {
d941feeb 89 setlocale(LC_MESSAGES, $this->locale);
90 setlocale(LC_TIME, $this->locale);
91 setlocale(LC_CTYPE, $this->locale);
1a013db7 92 date_default_timezone_set($this->timezone);
dcdcd18a 93 mb_internal_encoding("UTF-8");
0337d704 94 }
ea6398d1 95
612a2d8a 96 public function asso($key=null)
ea6398d1 97 {
98 static $aid = null;
99
100 if (is_null($aid)) {
101 $gp = Get::v('n');
27ae65e3 102 if ($p = strpos($gp, '/')) {
103 $gp = substr($gp, 0, $p);
104 }
ea6398d1 105
106 if ($gp) {
107 $res = XDB::query('SELECT a.*, d.nom AS domnom
108 FROM groupex.asso AS a
109 LEFT JOIN groupex.dom AS d ON d.id = a.dom
110 WHERE diminutif = {?}', $gp);
111 if (!($aid = $res->fetchOneAssoc())) {
112 $aid = array();
113 }
114 } else {
115 $aid = array();
116 }
117 }
118 if (empty($key)) {
119 return $aid;
120 } elseif ( isset($aid[$key]) ) {
121 return $aid[$key];
122 } else {
123 return null;
124 }
125 }
0337d704 126}
127
a7de4ef7 128// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
0337d704 129?>