Ejemplo n.º 1
0
 static function checklogin($tkid = null)
 {
     if ($tkid == null) {
         self::checklogin(data_use::register_get('tkid'));
     } else {
         if (1 != ($result = parent::checklogin($tkid))) {
             return $result;
         } else {
             return true;
         }
     }
 }