Merge branch 'platal-0.9.17'
[platal.git] / classes / platalglobals.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 /** The x.org version */
25 public $version = '@VERSION@';
26
27 /** db params */
28 public $dbdb = 'x4dat';
29 public $dbhost = 'localhost';
30 public $dbuser = 'x4dat';
31 public $dbpwd = 'x4dat';
32 public $dbcharset = 'utf8';
33
34 /** default skin */
35 public $skin;
36 public $register_skin;
37
38 public function __construct()
39 {
40 parent::__construct(array('platal.ini', 'platal.conf'));
41 }
42
43 public function init()
44 {
45 $this->bootstrap(array('NbIns'), array($this, 'updateNbIns'));
46 $this->bootstrap(array('NbValid'), array($this, 'updateNbValid'));
47 }
48
49 public function asso($key=null)
50 {
51 static $aid = null;
52
53 if (is_null($aid)) {
54 $gp = Get::v('n');
55 if ($p = strpos($gp, '/')) {
56 $gp = substr($gp, 0, $p);
57 }
58
59 if ($gp) {
60 $res = XDB::query('SELECT a.*, d.nom AS domnom,
61 FIND_IN_SET(\'wiki_desc\', a.flags) AS wiki_desc,
62 FIND_IN_SET(\'notif_unsub\', a.flags) AS notif_unsub
63 FROM groupex.asso AS a
64 LEFT JOIN groupex.dom AS d ON d.id = a.dom
65 WHERE diminutif = {?}', $gp);
66 if (!($aid = $res->fetchOneAssoc())) {
67 $aid = array();
68 }
69 } else {
70 $aid = array();
71 }
72 }
73 if (empty($key)) {
74 return $aid;
75 } elseif ( isset($aid[$key]) ) {
76 return $aid[$key];
77 } else {
78 return null;
79 }
80 }
81
82
83 public function updateNbIns()
84 {
85 $res = XDB::query("SELECT COUNT(*)
86 FROM auth_user_md5
87 WHERE perms IN ('admin','user') AND deces=0");
88 $cnt = $res->fetchOneCell();
89 $this->changeDynamicConfig(array('NbIns' => $cnt));
90 }
91
92 public function updateNbValid()
93 {
94 $res = XDB::query("SELECT COUNT(*)
95 FROM requests");
96 $this->changeDynamicConfig(array('NbValid' => $res->fetchOneCell()));
97 }
98 }
99
100
101 /******************************************************************************
102 * Dynamic configuration update/edition stuff
103 *****************************************************************************/
104
105 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
106 ?>