X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fxnet%2Fpage.inc.php;h=525890339702adb206958de9280664be5692a017;hb=e336465e05bbca91fd0eb3f5b4c27f1391529f98;hp=6fd7c7a273dffedc18d1f709ce261a8b79cff5d1;hpb=0df3edb9fd85fb750c47cee19a3a6b66f370cc97;p=platal.git diff --git a/include/xnet/page.inc.php b/include/xnet/page.inc.php index 6fd7c7a..5258903 100644 --- a/include/xnet/page.inc.php +++ b/include/xnet/page.inc.php @@ -1,6 +1,6 @@ PlatalPage($tpl, $type); + + $this->register_function('list_all_my_groups', 'list_all_my_groups'); + $this->register_modifier('cat_pp', 'cat_pp'); + $this->assign('it_is_xnet', true); + + if (!S::logged() && Get::has('auth')) { + XnetSession::doAuthX(); + } } // }}} @@ -58,172 +63,94 @@ class XnetPage extends PlatalPage $menu = array(); - $sub = array(); - $sub['accueil'] = 'index.php'; - $sub['liste des groupes'] = 'plan.php'; - if (logged()) { - if (has_perms()) { - $sub['admin X.net'] = 'admin.php'; - } - $sub['déconnexion'] = 'deconnexion.php'; + if (S::logged()) { + $sub = array(); + $sub['déconnexion'] = 'exit'; + $menu['no_title'] = $sub; } + + $sub = array(); + $sub['accueil'] = ''; + $sub['liste des groupes'] = 'plan'; + $sub['documentation'] = 'Xnet'; $menu["Menu Principal"] = $sub; - if (logged() && (is_member() || may_update())) { + if (S::logged() && (is_member() || may_update())) { $sub = array(); $dim = $globals->asso('diminutif'); - $sub['présentation'] = "$dim/asso.php"; - if (may_update() || $globals->asso('pub') == 'public') - $sub['annuaire du groupe'] = "$dim/annuaire.php"; - if ($globals->asso('mail_domain')) { - $sub['listes de diffusion'] = "$dim/listes.php"; + $sub['présentation'] = "$dim/"; + if (may_update() || $globals->asso('pub') == 'public') { + $sub['annuaire du groupe'] = "$dim/annuaire"; + $sub['carte'] = "$dim/geoloc"; } - $sub['événement'] = "$dim/evenements.php"; - if (false) { - $sub['carnet'] = "$dim/carnet.php"; + if ($globals->asso('mail_domain')) { + $sub['listes de diffusion'] = "$dim/lists"; + $sub['envoyer un mail'] = "$dim/mail"; } - $sub['télépaiement'] = "$dim/telepaiement.php"; + $sub['événement'] = "$dim/events"; + $sub['télépaiement'] = "$dim/paiement"; $menu[$globals->asso('nom')] = $sub; } - if (logged() && may_update()) { + if (S::logged() && may_update()) { $sub = array(); - $sub['modifier l\'accueil'] = "$dim/edit.php"; - if ($globals->wiki->wikidir && $globals->xnet->wiki) - $sub['wiki'] = "$dim/Accueil"; + $sub['modifier l\'accueil'] = "$dim/edit"; if ($globals->asso('mail_domain')) { - $sub['envoyer un mail'] = "$dim/mail.php"; - $sub['créer une liste'] = "$dim/listes-create.php"; - $sub['créer un alias'] = "$dim/alias-create.php"; + $sub['créer une liste'] = "$dim/lists/create"; + $sub['créer un alias'] = "$dim/alias/create"; + } + if (S::has_perms()) { + $sub['gérer les groupes'] = 'admin'; } - $menu['Administrer Groupe'] = $sub; + $menu['Administrer'] = $sub; + } elseif (S::has_perms()) { + $sub = array(); + $sub['gérer les groupes'] = 'admin'; + $menu['Administrer'] = $sub; } $this->assign('menu', $menu); } // }}} - // {{{ function doAuth() - - function doAuth() - { - $this->register_function('list_all_my_groups', 'list_all_my_groups'); - $this->register_modifier('cat_pp', 'cat_pp'); - $this->assign('it_is_xnet', true); - if (!logged() && Get::has('auth')) { - $_SESSION['session']->doAuthX($this); - } - } - - // }}} } -// }}} -// {{{ class XnetAuth +// {{{ function list_all_my_groups -/** Une classe pour les pages nécessitant l'authentification. - * (equivalent de controlauthentification.inc.php) - */ -class XnetAuth extends XnetPage +function list_all_my_groups($params) { - // {{{ function XnetAuth() - - function XnetAuth($tpl, $type=SKINNED) - { - $this->XnetPage($tpl, $type); - } - - // }}} - // {{{ function doAuth() - - function doAuth() - { - parent::doAuth(); - $_SESSION['session']->doAuth($this); + if (!S::logged()) { + return; } - - // }}} -} - -// }}} -// {{{ class XnetAdmin - -/** Une classe pour les pages réservées aux admins (authentifiés!). - */ -class XnetAdmin extends XnetAuth -{ - // {{{ function XnetAdmin() - - function XnetAdmin($tpl, $type=SKINNED) - { - global $globals; - - $this->XnetAuth($tpl, $type); - check_perms(); - - $this->useMenu(); - if ($globals->asso('cat')) { - $this->assign('asso', $globals->asso()); - $this->setType($globals->asso('cat')); - } + $res = XDB::iterRow( + "SELECT a.nom, a.diminutif + FROM groupex.asso AS a + INNER JOIN groupex.membres AS m ON m.asso_id = a.id + WHERE m.uid={?}", S::v('uid')); + $html = '
Mes groupes :
'; + while (list($nom, $mini) = $res->next()) { + $html .= "• $nom"; } - - // }}} + return $html; } // }}} -// {{{ class XnetGroupPage +// {{{ cat_pp -/** Une classe pour les pages réservées aux admins (authentifiés!). - */ -class XnetGroupPage extends XnetAuth +function cat_pp($cat) { - // {{{ function XnetAdmin() - - function XnetGroupPage($tpl, $type=SKINNED) - { - global $globals; - - $this->XnetAuth($tpl, $type); - if (!is_member() && !has_perms()) { - $this->kill("You have not sufficient credentials"); - } - - $this->useMenu(); - $this->assign('asso', $globals->asso()); - $this->setType($globals->asso('cat')); - } - - // }}} + $trans = array( + 'groupesx' => 'Groupes X' , + 'binets' => 'Binets' , + 'institutions' => 'Institutions' , + 'promotions' => 'Promotions' + ); + + return $trans[strtolower($cat)]; } // }}} -// {{{ class XnetGroupAdmin -/** Une classe pour les pages réservées aux admins (authentifiés!). - */ -class XnetGroupAdmin extends XnetAuth -{ - // {{{ function XnetAdmin() - - function XnetGroupAdmin($tpl, $type=SKINNED) - { - global $globals; - - $this->XnetAuth($tpl, $type); - if (!may_update()) { - $this->kill("You have not sufficient credentials"); - } - - $this->useMenu(); - $this->assign('asso', $globals->asso()); - $this->setType($globals->asso('cat')); - } - - // }}} -} - -// }}} // vim:set et sw=4 sts=4 sws=4 foldmethod=marker: ?>