Vous êtes connecté en tant que anonymous Se Deconnecter
application/class/Session.php
8640b6e0
 <?php
 
 
 namespace MVC\Classe;
 
 
 class Session
 {
 
ee2d7d73
     static public function start()
     {
         session_start();
         return;
     }
 
     static public function setUserProfile($userProfile)
     {
         $_SESSION['userProfile'] = $userProfile;
         return;
     }
 
     static public function setToken($token)
     {
         $_SESSION['userToken'] = $token;
         return;
     }
 
8640b6e0
     static public function isRegistered()
     {
         if (isset($_SESSION['userProfile'])) {
             return;
         } else {
             header("location : " . Url::link_rewrite(false, 'error', []));
             die('Ooops, something was wrong...');
         }
     }
 
 }