From: edward Date: Wed, 30 Mar 2016 10:35:28 +0000 (+0800) Subject: RooTrait.php X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=commitdiff_plain;h=1b13c0c4ff977ce125b392ee0aca9c1b70e0312f RooTrait.php --- diff --git a/RooTrait.php b/RooTrait.php index 16b24ee2..05f3b50b 100644 --- a/RooTrait.php +++ b/RooTrait.php @@ -164,17 +164,6 @@ trait Pman_Core_RooTrait { function getAuthUser() { - if (!empty($this->authUser)) { - return $this->authUser; - } - $ff = HTML_FlexyFramework::get(); - $tbl = empty($ff->Pman['authTable']) ? 'Person' : $ff->Pman['authTable']; - - $u = DB_DataObject::factory( $tbl ); - if (!$u->isAuth()) { - return false; - } - $this->authUser =$u->getAuthUser(); - return $this->authUser ; + die('Get auth user is not implement'); } }