Stricter validation of the context of 'mixed' search fields when text
[platal.git] / classes / platalglobals.php.in
CommitLineData
0337d704 1<?php
2/***************************************************************************
9f5bd98e 3 * Copyright (C) 2003-2010 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 */
900f65fb 28 public $dbdb = null;
00112b2e 29 public $dbprefix = '';
612a2d8a 30 public $dbhost = 'localhost';
900f65fb
FB
31 public $dbuser = null;
32 public $dbpwd = null;
612a2d8a 33 public $dbcharset = 'utf8';
72542de0 34
25962601 35 /** default skin */
36 public $skin;
37 public $register_skin;
38
47fa97fe 39 public function __construct()
0337d704 40 {
4a28e567 41 parent::__construct(array('platal.ini', 'platal.conf'));
6cd1e622
FB
42 if (isset($GLOBALS['IS_XNET_SITE'])) {
43 $this->core->sitename = 'Polytechnique.net';
44 }
14a76559
FB
45 }
46
47 public function init()
48 {
ebfdf077
FB
49 $this->bootstrap(array('NbIns'), array($this, 'updateNbIns'));
50 $this->bootstrap(array('NbValid'), array($this, 'updateNbValid'));
0337d704 51 }
ea6398d1 52
34ade5a6 53 public function asso($key = null)
ea6398d1 54 {
edcea678 55 static $fetched = false;
ea6398d1 56 static $aid = null;
57
edcea678 58 if (isset($GLOBALS['IS_XNET_SITE']) && !$fetched) {
ea6398d1 59 $gp = Get::v('n');
27ae65e3 60 if ($p = strpos($gp, '/')) {
61 $gp = substr($gp, 0, $p);
62 }
ea6398d1 63
34ade5a6 64 $aid = Group::get($gp);
edcea678 65 $fetched = true;
ea6398d1 66 }
67 if (empty($key)) {
68 return $aid;
34ade5a6
FB
69 } elseif (isset($aid->$key) ) {
70 return $aid->$key;
ea6398d1 71 } else {
72 return null;
73 }
74 }
ebfdf077 75
ebfdf077
FB
76 public function updateNbIns()
77 {
78 $res = XDB::query("SELECT COUNT(*)
6d1e6661
FB
79 FROM accounts
80 WHERE state = 'active'");
ebfdf077
FB
81 $cnt = $res->fetchOneCell();
82 $this->changeDynamicConfig(array('NbIns' => $cnt));
83 }
84
85 public function updateNbValid()
86 {
87 $res = XDB::query("SELECT COUNT(*)
88 FROM requests");
89 $this->changeDynamicConfig(array('NbValid' => $res->fetchOneCell()));
90 }
0337d704 91}
92
ebfdf077
FB
93
94/******************************************************************************
95 * Dynamic configuration update/edition stuff
96 *****************************************************************************/
97
a7de4ef7 98// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
0337d704 99?>