Erreur lorsqu'on ne peut pas détecter le type.
This commit is contained in:
parent
45e0052df5
commit
ab92f90f1a
|
@ -15,7 +15,10 @@ class Modules {
|
||||||
|
|
||||||
public static function get_module($chemin) {
|
public static function get_module($chemin) {
|
||||||
$type = Stockage::get_prop($chemin, "type");
|
$type = Stockage::get_prop($chemin, "type");
|
||||||
if ($type === false || !isset(self::$liste_modules[$type])) return false;
|
if ($type === false || !isset(self::$liste_modules[$type])) {
|
||||||
|
Erreur::fatale("Type inconnu (" . $type . ") pour la page " . $chemin->get() . ".");
|
||||||
|
// return false;
|
||||||
|
}
|
||||||
return self::$liste_modules[$type];
|
return self::$liste_modules[$type];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user