예제 #1
0
파일: login.php 프로젝트: SamLaio/mymvc
 function __construct()
 {
     parent::__construct();
     if (isset($_SESSION['UserId'])) {
         header('Location: index');
     }
 }
예제 #2
0
파일: load.php 프로젝트: SamLaio/mymvc
 function __construct()
 {
     parent::__construct();
     if (!isset($_SESSION['SiteName']) or !isset($_SESSION['SiteUrl'])) {
         $re = $this->Assoc('site', '*');
         $_SESSION['SiteName'] = $re[0]['name'];
         $_SESSION['SiteUrl'] = $re[0]['url'];
         $_SESSION['SiteLang'] = $re[0]['lang'];
     }
 }
예제 #3
0
파일: index.php 프로젝트: SamLaio/mymvc
 function __construct()
 {
     parent::__construct();
 }