Esempio n. 1
0
File: prv.php Progetto: 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;
     }
 }
Esempio n. 2
0
File: pub.php Progetto: haan78/hukuk
 protected function doAuthenticate() {
     parent::doAuthenticate();
     return true;
 }