#554: exit link on all pages
[platal.git] / include / xnet / page.inc.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
2b105fb6 3 * Copyright (C) 2003-2006 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';
9193e8f7 72 $sub['Signaler un bug'] = array('link' => 'send_bug', 'onclick' => 'send_bug();return false');
6b4707eb 73 $menu["no_title"] = $sub;
3cabafae 74
5372c4d7 75 if (S::logged() && $globals->asso()) {
0337d704 76 $sub = array();
77 $dim = $globals->asso('diminutif');
ae7bb180 78 $sub['présentation'] = "$dim/";
3cabafae 79 if (may_update() || (is_member() && $globals->asso('pub') == 'public')) {
2e94d2b8 80 $sub['annuaire du groupe'] = "$dim/annuaire";
e336465e 81 $sub['carte'] = "$dim/geoloc";
2b105fb6 82 }
3cabafae 83 if ((is_member() || may_update()) && $globals->asso('mail_domain')) {
80f44cfe 84 $sub['listes de diffusion'] = "$dim/lists";
0337d704 85 }
4f10a058 86 $sub['événement'] = "$dim/events";
3cabafae 87 if (may_update() || is_member()) {
88 $sub['télépaiement'] = "$dim/paiement";
89 }
0337d704 90
91 $menu[$globals->asso('nom')] = $sub;
92 }
93
cab08090 94 if (S::logged() && may_update()) {
0337d704 95 $sub = array();
2e94d2b8 96 $sub['modifier l\'accueil'] = "$dim/edit";
24bcf50c 97 $sub['gérer les annonces'] = "$dim/admin/announces";
0337d704 98 if ($globals->asso('mail_domain')) {
3cabafae 99 $sub['envoyer un mail'] = "$dim/mail";
80f44cfe 100 $sub['créer une liste'] = "$dim/lists/create";
d1fcf09c 101 $sub['créer un alias'] = "$dim/alias/create";
0337d704 102 }
59ff13cf 103 if (S::has_perms()) {
104 $sub['gérer les groupes'] = 'admin';
105 }
106 $menu['Administrer'] = $sub;
8383ee06 107 } elseif (S::has_perms()) {
108 $sub = array();
109 $sub['gérer les groupes'] = 'admin';
110 $menu['Administrer'] = $sub;
0337d704 111 }
112
113 $this->assign('menu', $menu);
114 }
115
116 // }}}
0337d704 117}
118
b76f0797 119// {{{ function list_all_my_groups
120
121function list_all_my_groups($params)
122{
123 if (!S::logged()) {
124 return;
125 }
126 $res = XDB::iterRow(
127 "SELECT a.nom, a.diminutif
128 FROM groupex.asso AS a
129 INNER JOIN groupex.membres AS m ON m.asso_id = a.id
130 WHERE m.uid={?}", S::v('uid'));
6b4707eb 131 $html = '<div>Mes groupes (<a href="exit">déconnexion</a>) :</div>';
b76f0797 132 while (list($nom, $mini) = $res->next()) {
6b4707eb 133 $html .= "<span class='gp'>&bull; <a href='$mini/'>$nom</a></span>";
b76f0797 134 }
135 return $html;
136}
137
138// }}}
139// {{{ cat_pp
140
141function cat_pp($cat)
142{
143 $trans = array(
144 'groupesx' => 'Groupes X' ,
145 'binets' => 'Binets' ,
146 'institutions' => 'Institutions' ,
147 'promotions' => 'Promotions'
148 );
149
150 return $trans[strtolower($cat)];
151}
152
153// }}}
154
0337d704 155// vim:set et sw=4 sts=4 sws=4 foldmethod=marker:
156?>