Merge branch 'account'
[platal.git] / classes / xnetpage.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2010 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 XnetPage extends PlPage
23 {
24 public $nomenu = false;
25
26 // {{{ function XnetPage()
27
28 public function __construct()
29 {
30 parent::__construct();
31
32 $this->register_function('list_all_my_groups', 'list_all_my_groups');
33 $this->register_modifier('cat_pp', 'cat_pp');
34 $this->assign('it_is_xnet', true);
35
36 global $globals;
37 $this->assign('is_logged', S::logged());
38 if ($globals->asso('id')) {
39 $this->assign('asso', $globals->asso());
40 $this->setType($globals->asso('cat'));
41 $this->assign('is_admin', may_update());
42 $this->assign('is_member', is_member());
43 }
44 $this->addJsLink('jquery.js');
45 $this->addJsLink('overlib.js');
46 $this->addJsLink('wiki.js');
47 $this->addJsLink('xorg.js');
48 $this->setTitle('Les associations polytechniciennes');
49 }
50
51 // }}}
52 // {{{ function run()
53
54 public function run()
55 {
56 if (!$this->nomenu) {
57 $this->useMenu();
58 }
59 $this->_run('xnet/skin.tpl');
60 }
61
62 // }}}
63 // {{{ function setType
64
65 public function setType($type)
66 {
67 $this->assign('xnet_type', strtolower($type));
68 }
69
70 // }}}
71 // {{{ function useMenu
72
73 private function useMenu()
74 {
75 global $globals;
76
77 $menu = array();
78
79 $sub = array();
80 $sub['tous les groupes'] = 'plan';
81 $sub['documentation'] = 'Xnet';
82 $sub['signaler un bug'] = array('href' => 'send_bug/'.$_SERVER['REQUEST_URI'], 'class' => 'popup_840x600');
83 $menu["no_title"] = $sub;
84
85 $perms = S::v('perms');
86 $dim = $globals->asso('diminutif');
87 if (S::logged() && $globals->asso()) {
88 $sub = array();
89 $sub['présentation'] = "login/$dim/";
90 if ($perms->hasFlag('groupannu')) {
91 $sub['annuaire du groupe'] = "$dim/annuaire";
92 $sub['trombinoscope'] = "$dim/trombi";
93 }
94 if ($perms->hasFlag('groupmember')) {
95 if ($globals->asso('forum')) {
96 $sub['forum'] = "$dim/forum";
97 }
98 if ($globals->asso('mail_domain')) {
99 $sub['listes de diffusion'] = "$dim/lists";
100 }
101 }
102 $sub['événement'] = "$dim/events";
103 if ($perms->hasFlag('groupmember')) {
104 $sub['télépaiement'] = "$dim/payment";
105 }
106
107 $menu[$globals->asso('nom')] = $sub;
108 }
109
110 if ($globals->asso() && is_object($perms) && $perms->hasFlag('groupadmin')) {
111 $sub = array();
112 $sub['modifier l\'accueil'] = "$dim/edit";
113 $sub['gérer les annonces'] = "$dim/admin/announces";
114 if ($globals->asso('mail_domain')) {
115 $sub['envoyer un mail'] = "$dim/mail";
116 $sub['créer une liste'] = "$dim/lists/create";
117 $sub['créer un alias'] = "$dim/alias/create";
118 }
119 if (S::admin()) {
120 $sub['gérer les groupes'] = array('href' => 'admin', 'style' => 'color: gray;');
121 $sub['clear cache'] = array('href' => 'purge_cache?token=' . S::v('xsrf_token'), 'style' => 'color: gray;');
122 }
123 $menu['Administrer'] = $sub;
124 } elseif (S::admin()) {
125 $sub = array();
126 $sub['gérer les groupes'] = 'admin';
127 $sub['clear cache'] = 'purge_cache?token=' . S::v('xsrf_token');
128 $menu['Administrer'] = $sub;
129 }
130
131 $this->assign('menu', $menu);
132 }
133
134 // }}}
135 }
136
137 // {{{ function list_all_my_groups
138
139 function list_all_my_groups($params)
140 {
141 if (!S::logged()) {
142 return;
143 }
144 $res = XDB::iterRow('SELECT a.nom, a.diminutif
145 FROM groups AS a
146 INNER JOIN group_members AS m ON m.asso_id = a.id
147 WHERE m.uid = {?}', S::i('uid'));
148 $links = '<a href="exit">déconnexion</a>';
149 $html = '<div>Mes groupes (' . $links . ') :</div>';
150 while (list($nom, $mini) = $res->next()) {
151 $html .= "<span class='gp'>&bull; <a href='login/$mini'>$nom</a></span>";
152 }
153 return $html;
154 }
155
156 // }}}
157 // {{{ cat_pp
158
159 function cat_pp($cat)
160 {
161 $trans = array(
162 'groupesx' => 'Groupes X' ,
163 'binets' => 'Binets' ,
164 'institutions' => 'Institutions' ,
165 'promotions' => 'Promotions'
166 );
167
168 return $trans[strtolower($cat)];
169 }
170
171 // }}}
172
173 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
174 ?>