. */ /** * @brief Contains the usergroups 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 usergroups Object, herits of the BaseObject class * * @ingroup core */ class usergroups extends BaseObject { /** * Returns the string representing the usergroups object * * @return string The usergroup label (group_desc field in the usergroups table) */ function __toString(){ return $this->group_desc; } } ?>