. */ /** * @brief Contains the users Object (herits of the BaseObject class) * * * @file * @author Claire Figueras * @date $date$ * @version $Revision$ * @ingroup core */ // Loads the required class try { require_once("core/class/BaseObject.php"); } catch (Exception $e){ echo $e->getMessage().' // '; } /** * @brief users Object, herits of the BaseObject class * * @ingroup core */ class users extends BaseObject { /** * Returns the string representing the users object * * @return string The user label (lastname, firstname and user_id) */ function __toString(){ return $this->lastname.", ".$this->firstname." (".$this->user_id.")" ; } } ?>