backport fix lien pour remonter en haut des events
[platal.git] / modules / xnet.php
index e5bb296..c36cf59 100644 (file)
@@ -25,15 +25,9 @@ class XnetModule extends PLModule
     {
         return array(
             'index'     => $this->make_hook('index',     AUTH_PUBLIC),
+            'login'     => $this->make_hook('login',     AUTH_MDP),
             'exit'      => $this->make_hook('exit',      AUTH_PUBLIC),
 
-            'about'     => $this->make_hook('about',     AUTH_PUBLIC),
-            'article12' => $this->make_hook('article12', AUTH_PUBLIC),
-            'article16' => $this->make_hook('article16', AUTH_PUBLIC),
-            'creategpx' => $this->make_hook('creategpx', AUTH_PUBLIC),
-            'services'  => $this->make_hook('services',  AUTH_PUBLIC),
-            'manuel'    => $this->make_hook('manuel',    AUTH_PUBLIC),
-
             'admin'     => $this->make_hook('admin',     AUTH_MDP, 'admin'),
             'groups'    => $this->make_hook('groups',    AUTH_PUBLIC),
             'groupes.php' => $this->make_hook('groups2', AUTH_PUBLIC),
@@ -46,52 +40,18 @@ class XnetModule extends PLModule
         $page->changeTpl('xnet/index.tpl');
     }
 
-    function handler_exit(&$page)
-    {
-        XnetSession::destroy();
-        $page->changeTpl('xnet/deconnexion.tpl');
-        $page->useMenu();
-    }
-
-    function handler_about(&$page)
-    {
-        $page->changeTpl('xnet/apropos.tpl');
-        $page->useMenu();
-    }
-
-    function handler_article12(&$page)
-    {
-        $page->changeTpl('xnet/article12.tpl');
-        $page->useMenu();
-    }
-
-    function handler_article16(&$page)
+    function handler_login(&$page)
     {
-        $page->changeTpl('xnet/article16.tpl');
-        $page->useMenu();
-    }
-
-    function handler_creategpx(&$page)
-    {
-        $page->changeTpl('xnet/creation-groupex.tpl');
-        $page->useMenu();
+        pl_redirect('');
     }
 
-    function handler_services(&$page)
+    function handler_exit(&$page)
     {
-        $page->changeTpl('xnet/services.tpl');
+        XnetSession::destroy();
+        $page->changeTpl('xnet/deconnexion.tpl');
         $page->useMenu();
     }
 
-    function handler_manuel(&$page, $type = null)
-    {
-        $page->changeTpl('xnet/manuel.tpl');
-        if (!$type) {
-            $page->useMenu();
-        }
-        $page->assign('type', $type);
-    }
-
     function handler_admin(&$page)
     {
         new_admin_page('xnet/admin.tpl');