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