2 // superviseur => 1 // autre => 0 function Profil($username) { global $administrateurs, $superviseurs; global $roles, $niveaux, $lib_personnel; if (in_array($username, $administrateurs)) { return $niveaux[$roles[3]]; } elseif (in_array($username, $superviseurs)) { return $niveaux[$roles[2]]; } else { $compte = Compte($username); if ($compte[2] == $lib_personnel) { return $niveaux[$roles[1]]; } else { return $niveaux[$roles[0]]; } } }; // Fonction FiltreProfil() : redirige vers interdit.php si profil inférieur à niveau Superviseur function FiltreProfil($profil) { global $niveaux, $roles; if ($profil < $niveaux[$roles[2]]) { header('Location: interdit.php'); exit(); } }; ?>