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