--- nfo/php/libs/org.netfrag.flib/Tracker/User.php 2003/03/03 21:20:47 1.12 +++ nfo/php/libs/org.netfrag.flib/Tracker/User.php 2003/04/04 02:15:09 1.13 @@ -1,8 +1,21 @@ + * @package org.netfrag.flib + * @name Tracker::User + * + */ + + // ----------------------------------------------------------------------------- -// $Id: User.php,v 1.12 2003/03/03 21:20:47 joko Exp $ +// $Id: User.php,v 1.13 2003/04/04 02:15:09 joko Exp $ // ----------------------------------------------------------------------------- // $Log: User.php,v $ +// Revision 1.13 2003/04/04 02:15:09 joko +// renamed method of helper object +// // Revision 1.12 2003/03/03 21:20:47 joko // mungled the namespaces // @@ -83,6 +96,15 @@ // // ----------------------------------------------------------------------------- + +/** + * This is the User class. + * + * @author Andreas Motl + * @package org.netfrag.flib + * @name Tracker::User + * + */ class User { var $state; @@ -122,7 +144,7 @@ $rpcinfo = $this->site->configuration->get("rpcinfo"); $this->pObject = mkObject('DesignPattern::RemoteProxy', $this->getUserGuid(), array( remote => 1, classname => "NetPerson", guid => 1, rpcinfo => $rpcinfo, cache => array( db => 1, session => 1 ), connect => 1 ) ); if ($this->getUserGuid()) { - $this->data = $this->pObject->getAttributes(); + $this->data = $this->pObject->getResult(); } }