Globals, Session and Page object are now built by the Platal:: object.
[platal.git] / include / globals.inc.php.in
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2008 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 extends PlGlobals
23 {
24 public $session;
25
26 /** The x.org version */
27 public $version = '@VERSION@';
28 public $debug = 0;
29 public $mode = 'rw'; // 'rw' => read/write,
30 // 'r' => read/only
31 // '' => site down
32
33 /** db params */
34 public $dbdb = 'x4dat';
35 public $dbhost = 'localhost';
36 public $dbuser = 'x4dat';
37 public $dbpwd = 'x4dat';
38 public $dbcharset = 'utf8';
39
40 /** default skin */
41 public $skin;
42 public $register_skin;
43
44 public function __construct($sess)
45 {
46 parent::__construct(array('platal.ini', 'platal.conf'));
47 $globals->bootstrap(array('NbIns'), 'update_NbIns');i
48 $globals->bootstrap(array('NbValid'), 'update_NbValid');
49 }
50
51 public function asso($key=null)
52 {
53 static $aid = null;
54
55 if (is_null($aid)) {
56 $gp = Get::v('n');
57 if ($p = strpos($gp, '/')) {
58 $gp = substr($gp, 0, $p);
59 }
60
61 if ($gp) {
62 $res = XDB::query('SELECT a.*, d.nom AS domnom,
63 FIND_IN_SET(\'wiki_desc\', a.flags) AS wiki_desc,
64 FIND_IN_SET(\'notif_unsub\', a.flags) AS notif_unsub
65 FROM groupex.asso AS a
66 LEFT JOIN groupex.dom AS d ON d.id = a.dom
67 WHERE diminutif = {?}', $gp);
68 if (!($aid = $res->fetchOneAssoc())) {
69 $aid = array();
70 }
71 } else {
72 $aid = array();
73 }
74 }
75 if (empty($key)) {
76 return $aid;
77 } elseif ( isset($aid[$key]) ) {
78 return $aid[$key];
79 } else {
80 return null;
81 }
82 }
83 }
84
85 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
86 ?>