예제 #1
0
파일: prv.php 프로젝트: haan78/hukuk
 protected function doAuthenticate() {
     //return true;
     parent::doAuthenticate();
     session_start();
     if (isset($_SESSION["kullanici_tc_no"])) {
         return true;
     } else {
         session_unset();
         session_destroy();
         return false;
     }
 }
예제 #2
0
파일: pub.php 프로젝트: haan78/hukuk
 protected function doAuthenticate() {
     parent::doAuthenticate();
     return true;
 }