Move paiement db in x4dat (tables payment*).
[platal.git] / classes / group.php
CommitLineData
34ade5a6
FB
1<?php
2/***************************************************************************
3 * Copyright (C) 2003-2009 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
22class Group
23{
24 public $id;
25 public $shortname;
26 private $data = array();
27
34ade5a6
FB
28 private function __construct(array $data)
29 {
30 foreach ($data as $key=>$value) {
31 $this->data[$key] = $value;
32 }
33 $this->id = intval($this->data['id']);
34 $this->shortname = $this->data['diminutif'];
35 }
36
37 public function __get($name)
38 {
39 if (property_exists($this, $name)) {
40 return $this->$name;
41 }
42
43 if (isset($this->data[$name])) {
44 return $this->data[$name];
45 }
46
47 return null;
48 }
49
50 public function __isset($name)
51 {
52 return property_exists($this, $name) || isset($this->data[$name]);
53 }
54
d865c296 55 private function getUF($admin = false, $extra_cond = null, $sort = null)
34ade5a6 56 {
d865c296
FB
57 $cond = new UFC_Group($this->id, $admin);
58 if (!is_null($extra_cond)) {
59 $cond = new UFC_And($cond, $extra_cond);
34ade5a6 60 }
d865c296 61 return new UserFilter($cond, $sort);
34ade5a6
FB
62 }
63
d865c296 64 public function getMembers($extra_cond = null, $sort = null)
34ade5a6 65 {
d865c296 66 return $this->getUF(false, $extra_cond, $sort);
34ade5a6
FB
67 }
68
d865c296 69 public function getAdmins($extra_cond = null, $sort = null)
34ade5a6 70 {
d865c296 71 return $this->getUF(true, $extra_cond, $sort);
34ade5a6
FB
72 }
73
74 static public function get($id)
75 {
76 if (!$id) {
77 return null;
78 }
79 if (ctype_digit($id)) {
80 $where = XDB::format('id = {?}', $id);
81 } else {
82 $where = XDB::format('diminutif = {?}', $id);
83 }
84 $res = XDB::query('SELECT a.*, d.nom AS domnom,
85 FIND_IN_SET(\'wiki_desc\', a.flags) AS wiki_desc,
86 FIND_IN_SET(\'notif_unsub\', a.flags) AS notif_unsub
06490196
VZ
87 FROM #groupex#.asso AS a
88 LEFT JOIN #groupex#.dom AS d ON d.id = a.dom
34ade5a6
FB
89 WHERE ' . $where);
90 if ($res->numRows() != 1) {
91 return null;
92 }
93 return new Group($res->fetchOneAssoc());
94 }
95}
96
97// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
98?>