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