I think JMY will be happy :
[platal.git] / include / xnet / page.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2004 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 require_once('platal/page.inc.php');
23 require_once('xnet/smarty.plugins.inc.php');
24
25 // {{{ class XnetPage
26
27 class XnetPage extends PlatalPage
28 {
29 // {{{ function XnetPage()
30
31 function XnetPage($tpl, $type=SKINNED)
32 {
33 $this->PlatalPage($tpl, $type);
34 }
35
36 // }}}
37 // {{{ function run()
38
39 function run()
40 {
41 $this->_run('xnet/skin.tpl');
42 }
43
44 // }}}
45 // {{{ function setType
46
47 function setType($type)
48 {
49 $this->assign('xnet_type', strtolower($type));
50 }
51
52 // }}}
53 // {{{ function useMenu
54
55 function useMenu()
56 {
57 global $globals;
58
59 $menu = array();
60
61 $sub = array();
62 $sub['accueil'] = 'index.php';
63 $sub['liste des groupes'] = 'plan.php';
64 if (logged()) {
65 if (has_perms()) {
66 $sub['admin X.net'] = 'admin.php';
67 }
68 $sub['déconnexion'] = 'deconnexion.php';
69 }
70 $menu["Menu Principal"] = $sub;
71
72 if (logged() && (is_member() || may_update())) {
73 $sub = array();
74 $dim = $globals->asso('diminutif');
75 $sub['présentation'] = "$dim/asso.php";
76 if (may_update() || $globals->asso('pub') == 'public')
77 $sub['annuaire du groupe'] = "$dim/annuaire.php";
78 if ($globals->asso('mail_domain')) {
79 $sub['listes de diffusion'] = "$dim/listes.php";
80 }
81 $sub['événement'] = "$dim/evenements.php";
82 if (false) {
83 $sub['carnet'] = "$dim/carnet.php";
84 }
85 $sub['télépaiement'] = "$dim/telepaiement.php";
86
87 $menu[$globals->asso('nom')] = $sub;
88 }
89
90 if (logged() && may_update()) {
91 $sub = array();
92 $sub['modifier l\'accueil'] = "$dim/edit.php";
93 if ($globals->asso('mail_domain')) {
94 $sub['envoyer un mail'] = "$dim/mail.php";
95 $sub['créer une liste'] = "$dim/listes-create.php";
96 $sub['créer un alias'] = "$dim/alias-create.php";
97 }
98 $menu['Administrer Groupe'] = $sub;
99 }
100
101 $this->assign('menu', $menu);
102 }
103
104 // }}}
105 // {{{ function doAuth()
106
107 function doAuth()
108 {
109 $this->register_function('list_all_my_groups', 'list_all_my_groups');
110 $this->register_modifier('cat_pp', 'cat_pp');
111 $this->assign('it_is_xnet', true);
112 if (!logged() && Get::has('auth')) {
113 $_SESSION['session']->doAuthX($this);
114 }
115 }
116
117 // }}}
118 }
119
120 // }}}
121 // {{{ class XnetAuth
122
123 /** Une classe pour les pages nécessitant l'authentification.
124 * (equivalent de controlauthentification.inc.php)
125 */
126 class XnetAuth extends XnetPage
127 {
128 // {{{ function XnetAuth()
129
130 function XnetAuth($tpl, $type=SKINNED)
131 {
132 $this->XnetPage($tpl, $type);
133 }
134
135 // }}}
136 // {{{ function doAuth()
137
138 function doAuth()
139 {
140 parent::doAuth();
141 $_SESSION['session']->doAuth($this);
142 }
143
144 // }}}
145 }
146
147 // }}}
148 // {{{ class XnetAdmin
149
150 /** Une classe pour les pages réservées aux admins (authentifiés!).
151 */
152 class XnetAdmin extends XnetAuth
153 {
154 // {{{ function XnetAdmin()
155
156 function XnetAdmin($tpl, $type=SKINNED)
157 {
158 global $globals;
159
160 $this->XnetAuth($tpl, $type);
161 check_perms();
162
163 $this->useMenu();
164 if ($globals->asso('cat')) {
165 $this->assign('asso', $globals->asso());
166 $this->setType($globals->asso('cat'));
167 }
168 }
169
170 // }}}
171 }
172
173 // }}}
174 // {{{ class XnetGroupPage
175
176 /** Une classe pour les pages réservées aux admins (authentifiés!).
177 */
178 class XnetGroupPage extends XnetAuth
179 {
180 // {{{ function XnetAdmin()
181
182 function XnetGroupPage($tpl, $type=SKINNED)
183 {
184 global $globals;
185
186 $this->XnetAuth($tpl, $type);
187 if (!is_member() && !has_perms()) {
188 $this->kill("You have not sufficient credentials");
189 }
190
191 $this->useMenu();
192 $this->assign('asso', $globals->asso());
193 $this->setType($globals->asso('cat'));
194 }
195
196 // }}}
197 }
198
199 // }}}
200 // {{{ class XnetGroupAdmin
201
202 /** Une classe pour les pages réservées aux admins (authentifiés!).
203 */
204 class XnetGroupAdmin extends XnetAuth
205 {
206 // {{{ function XnetAdmin()
207
208 function XnetGroupAdmin($tpl, $type=SKINNED)
209 {
210 global $globals;
211
212 $this->XnetAuth($tpl, $type);
213 if (!may_update()) {
214 $this->kill("You have not sufficient credentials");
215 }
216
217 $this->useMenu();
218 $this->assign('asso', $globals->asso());
219 $this->setType($globals->asso('cat'));
220 }
221
222 // }}}
223 }
224
225 // }}}
226 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker:
227 ?>