Notifies her contacts when a user looses her last redirection (Closes #1000).
[platal.git] / classes / platalglobals.php.in
CommitLineData
0337d704 1<?php
2/***************************************************************************
8d84c630 3 * Copyright (C) 2003-2009 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'));
6cd1e622
FB
41 if (isset($GLOBALS['IS_XNET_SITE'])) {
42 $this->core->sitename = 'Polytechnique.net';
43 }
14a76559
FB
44 }
45
46 public function init()
47 {
ebfdf077
FB
48 $this->bootstrap(array('NbIns'), array($this, 'updateNbIns'));
49 $this->bootstrap(array('NbValid'), array($this, 'updateNbValid'));
0337d704 50 }
ea6398d1 51
612a2d8a 52 public function asso($key=null)
ea6398d1 53 {
54 static $aid = null;
55
56 if (is_null($aid)) {
57 $gp = Get::v('n');
27ae65e3 58 if ($p = strpos($gp, '/')) {
59 $gp = substr($gp, 0, $p);
60 }
ea6398d1 61
62 if ($gp) {
41c0150b 63 $res = XDB::query("SELECT a.*, d.nom AS domnom,
41c0150b
SJ
64 FIND_IN_SET('notif_unsub', a.flags) AS notif_unsub,
65 FIND_IN_SET('has_ml', a.flags) AS has_ml
ea6398d1 66 FROM groupex.asso AS a
67 LEFT JOIN groupex.dom AS d ON d.id = a.dom
41c0150b
SJ
68 WHERE diminutif = {?}",
69 $gp);
ea6398d1 70 if (!($aid = $res->fetchOneAssoc())) {
71 $aid = array();
72 }
73 } else {
74 $aid = array();
75 }
76 }
77 if (empty($key)) {
78 return $aid;
79 } elseif ( isset($aid[$key]) ) {
80 return $aid[$key];
81 } else {
82 return null;
83 }
84 }
ebfdf077
FB
85
86
87 public function updateNbIns()
88 {
89 $res = XDB::query("SELECT COUNT(*)
90 FROM auth_user_md5
91 WHERE perms IN ('admin','user') AND deces=0");
92 $cnt = $res->fetchOneCell();
93 $this->changeDynamicConfig(array('NbIns' => $cnt));
94 }
95
96 public function updateNbValid()
97 {
98 $res = XDB::query("SELECT COUNT(*)
99 FROM requests");
100 $this->changeDynamicConfig(array('NbValid' => $res->fetchOneCell()));
101 }
0337d704 102}
103
ebfdf077
FB
104
105/******************************************************************************
106 * Dynamic configuration update/edition stuff
107 *****************************************************************************/
108
a7de4ef7 109// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
0337d704 110?>