backport
[platal.git] / include / xnet / page.inc.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
5ddeb07c 3 * Copyright (C) 2003-2007 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
0337d704 22class XnetPage extends PlatalPage
23{
d83a1b04 24 var $nomenu = false;
25
0337d704 26 // {{{ function XnetPage()
27
28 function XnetPage($tpl, $type=SKINNED)
29 {
30 $this->PlatalPage($tpl, $type);
63528107 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 if (!S::logged() && Get::has('auth')) {
37 XnetSession::doAuthX();
38 }
0337d704 39 }
40
41 // }}}
42 // {{{ function run()
43
44 function run()
45 {
d83a1b04 46 if (!$this->nomenu) {
47 $this->useMenu();
48 }
0337d704 49 $this->_run('xnet/skin.tpl');
50 }
51
52 // }}}
53 // {{{ function setType
54
55 function setType($type)
56 {
57 $this->assign('xnet_type', strtolower($type));
58 }
59
60 // }}}
61 // {{{ function useMenu
62
63 function useMenu()
64 {
65 global $globals;
66
67 $menu = array();
68
59ff13cf 69 $sub = array();
59ff13cf 70 $sub['liste des groupes'] = 'plan';
27455960 71 $sub['documentation'] = 'Xnet';
c0d230b0 72 $sub['signaler un bug'] = array('href' => 'send_bug', 'class' => 'popup_840x600');
6b4707eb 73 $menu["no_title"] = $sub;
3cabafae 74
5372c4d7 75 if (S::logged() && $globals->asso()) {
0337d704 76 $sub = array();
77 $dim = $globals->asso('diminutif');
a7de4ef7 78 $sub['présentation'] = "login/$dim/";
d24c8a11 79 if (may_update() || (is_member() && $globals->asso('pub') == 'public')
80 || $globals->asso('cat') == 'Promotions') {
2e94d2b8 81 $sub['annuaire du groupe'] = "$dim/annuaire";
28929cf0 82 $sub['trombinoscope'] = "$dim/trombi";
e336465e 83 $sub['carte'] = "$dim/geoloc";
2b105fb6 84 }
4f355064 85 if (is_member() || may_update()) {
86 if ($globals->asso('forum')) {
87 $sub['forum'] = "$dim/forum";
88 }
89 if ($globals->asso('mail_domain')) {
90 $sub['listes de diffusion'] = "$dim/lists";
91 }
0337d704 92 }
a7de4ef7 93 $sub['événement'] = "$dim/events";
3cabafae 94 if (may_update() || is_member()) {
a7de4ef7 95 $sub['télépaiement'] = "$dim/payment";
3cabafae 96 }
0337d704 97
98 $menu[$globals->asso('nom')] = $sub;
99 }
100
cab08090 101 if (S::logged() && may_update()) {
0337d704 102 $sub = array();
2e94d2b8 103 $sub['modifier l\'accueil'] = "$dim/edit";
a7de4ef7 104 $sub['gérer les annonces'] = "$dim/admin/announces";
0337d704 105 if ($globals->asso('mail_domain')) {
3cabafae 106 $sub['envoyer un mail'] = "$dim/mail";
a7de4ef7 107 $sub['créer une liste'] = "$dim/lists/create";
108 $sub['créer un alias'] = "$dim/alias/create";
0337d704 109 }
59ff13cf 110 if (S::has_perms()) {
a7de4ef7 111 $sub['gérer les groupes'] = array('href' => 'admin', 'style' => 'color: gray;');
de4b22cc 112 $sub['clear cache'] = array('href' => 'purge_cache', 'style' => 'color: gray;');
59ff13cf 113 }
114 $menu['Administrer'] = $sub;
8383ee06 115 } elseif (S::has_perms()) {
116 $sub = array();
a7de4ef7 117 $sub['gérer les groupes'] = 'admin';
2aee5b48 118 $sub['clear cache'] = 'purge_cache';
8383ee06 119 $menu['Administrer'] = $sub;
0337d704 120 }
121
122 $this->assign('menu', $menu);
123 }
124
125 // }}}
0337d704 126}
127
b76f0797 128// {{{ function list_all_my_groups
129
130function list_all_my_groups($params)
131{
132 if (!S::logged()) {
133 return;
134 }
135 $res = XDB::iterRow(
136 "SELECT a.nom, a.diminutif
137 FROM groupex.asso AS a
138 INNER JOIN groupex.membres AS m ON m.asso_id = a.id
139 WHERE m.uid={?}", S::v('uid'));
a7de4ef7 140 $links = '<a href="exit">déconnexion</a>';
e74411f7 141 $html = '<div>Mes groupes (' . $links . ') :</div>';
b76f0797 142 while (list($nom, $mini) = $res->next()) {
db5db6c8 143 $html .= "<span class='gp'>&bull; <a href='login/$mini'>$nom</a></span>";
b76f0797 144 }
145 return $html;
146}
147
148// }}}
149// {{{ cat_pp
150
151function cat_pp($cat)
152{
153 $trans = array(
154 'groupesx' => 'Groupes X' ,
155 'binets' => 'Binets' ,
156 'institutions' => 'Institutions' ,
157 'promotions' => 'Promotions'
158 );
159
160 return $trans[strtolower($cat)];
161}
162
163// }}}
164
a7de4ef7 165// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
0337d704 166?>