Moves make_firstname_case to PlUser.
[platal.git] / classes / platal.php
index a8b5459..6d32374 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /***************************************************************************
- *  Copyright (C) 2003-2008 Polytechnique.org                              *
+ *  Copyright (C) 2003-2010 Polytechnique.org                              *
  *  http://opensource.polytechnique.org/                                   *
  *                                                                         *
  *  This program is free software; you can redistribute it and/or modify   *
@@ -46,7 +46,7 @@ abstract class Platal
         $sessionclass = PL_SESSION_CLASS;
         $session = new $sessionclass();
         if (!$session->startAvailableAuth()) {
-            Platal::page()->trigError('Données d\'authentification invalide.');
+            Platal::page()->trigError("Données d'authentification invalides.");
         }
 
         $modules    = func_get_args();
@@ -62,7 +62,7 @@ abstract class Platal
         foreach ($modules as $module) {
             $module = strtolower($module);
             $this->__mods[$module] = $m = PLModule::factory($module);
-            $this->__hooks += $m->handlers();
+            $this->__hooks = $m->handlers() + $this->__hooks;
         }
 
         if ($globals->mode == '') {
@@ -267,7 +267,9 @@ abstract class Platal
             }
         }
         if ($hook['auth'] != AUTH_PUBLIC && !$this->check_perms($hook['perms'])) {
-            return PL_FORBIDDEN;
+            if (self::notAllowed()) {
+                return PL_FORBIDDEN;
+            }
         }
 
         $val = call_user_func_array($hook['hook'], $args);
@@ -326,6 +328,16 @@ abstract class Platal
         $page->run();
     }
 
+    public static function notAllowed()
+    {
+        if (S::admin()) {
+            self::page()->trigWarning('Tu accèdes à cette page car tu es administrateur du site.');
+            return false;
+        } else {
+            return true;
+        }
+    }
+
     public static function load($modname, $include = null)
     {
         global $platal;
@@ -344,6 +356,20 @@ abstract class Platal
         }
     }
 
+       public static function assert($cond, $error, $userfriendly)
+       {
+               global $globals;
+               if ($cond === false) {
+                       header($_SERVER['SERVER_PROTOCOL'] . ' 500 Internal Server Error');
+                       $file = fopen($globals->spoolroot . '/spool/tmp/assert_erros', 'a');
+                       fwrite($file, '<pre>' . pl_entities($error) . '</pre>\n');
+                       fclose($file);
+
+                       Platal::page()->kill($userfriendly);
+               }
+       }
+
+
     static public function &page()
     {
         global $platal;