. */ /** * @brief Contains the docserver_types Object (herits of the BaseObject class) * * * @file * @author Laurent Giovannoni * @date $date$ * @version $Revision$ * @ingroup core */ // Loads the required class try { require_once("core/class/BaseObject.php"); } catch (Exception $e) { echo $e->getMessage().' // '; } class docserver_types extends BaseObject { /** *Print a viewable string to render the object. * @return string Rendering of the object */ public function __toString() { return $this->docserver_type_label; } }