move private include
[platal.git] / include / globals.inc.php.in
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2006 Polytechnique.org *
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
22 class PlatalGlobals
23 {
24 var $session;
25
26 /** The x.org version */
27 var $version = '@VERSION@';
28 var $debug = 0;
29
30 /** db params */
31 var $dbdb = 'x4dat';
32 var $dbhost = 'localhost';
33 var $dbuser = 'x4dat';
34 var $dbpwd = 'x4dat';
35
36 /** paths */
37 var $baseurl;
38 var $spoolroot;
39
40 function PlatalGlobals($sess)
41 {
42 $this->session = $sess;
43
44 $base = empty($_SERVER['HTTPS']) ? 'http://' : 'https://';
45 $this->baseurl = trim($base.$_SERVER['SERVER_NAME'].dirname($_SERVER['PHP_SELF']), '/');
46 $this->spoolroot = dirname(dirname(dirname(__FILE__)));
47
48 $this->read_config();
49
50 $this->dbconnect();
51 $this->setlocale();
52 }
53
54 function read_config()
55 {
56 $array = parse_ini_file($this->spoolroot.'/configs/platal.ini', true);
57 foreach ($array as $cat => $conf) {
58 $c = strtolower($cat);
59 foreach ($conf as $k => $v) {
60 $this->$c->$k = $v;
61 }
62 }
63
64 $array = parse_ini_file($this->spoolroot.'/configs/platal.conf', true);
65 if (!is_array($array)) {
66 return;
67 }
68
69 foreach ($array as $cat=>$conf) {
70 $c = strtolower($cat);
71 foreach ($conf as $key=>$val) {
72 if ($c == 'core' && isset($this->$key)) {
73 $this->$key=$val;
74 } else {
75 $this->$c->$key = $val;
76 }
77 }
78 }
79 }
80
81 function dbconnect()
82 {
83 @mysql_connect($this->dbhost, $this->dbuser, $this->dbpwd);
84 @mysql_select_db($this->dbdb);
85 }
86
87 function setlocale()
88 {
89 global $globals;
90 setlocale(LC_MESSAGES, $globals->core->locale);
91 setlocale(LC_TIME, $globals->core->locale);
92 setlocale(LC_CTYPE, $globals->core->locale);
93 }
94
95 function asso($key=null)
96 {
97 static $aid = null;
98
99 if (is_null($aid)) {
100 $gp = Get::v('n');
101 $gp = substr($gp, 0, strpos($gp, '/'));
102
103 if ($gp) {
104 $res = XDB::query('SELECT a.*, d.nom AS domnom
105 FROM groupex.asso AS a
106 LEFT JOIN groupex.dom AS d ON d.id = a.dom
107 WHERE diminutif = {?}', $gp);
108 if (!($aid = $res->fetchOneAssoc())) {
109 $aid = array();
110 }
111 } else {
112 $aid = array();
113 }
114 }
115 if (empty($key)) {
116 return $aid;
117 } elseif ( isset($aid[$key]) ) {
118 return $aid[$key];
119 } else {
120 return null;
121 }
122 }
123 }
124
125 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker:
126 ?>