/**
  * Construct
  *
  * @return BaseComments 
  */
 function __construct()
 {
     Hook::fire('object_definition', 'Comment', self::$columns);
     parent::__construct('Comment', 'comments', true);
 }
 /**
  * Construct
  *
  * @return BaseProjectCharts
  */
 function __construct()
 {
     Hook::fire('object_definition', 'ProjectChart', self::$columns);
     parent::__construct('ProjectChart', 'project_charts', true);
 }
 /**
  * Construct
  *
  * @return BaseProjectFileRevisions 
  */
 function __construct()
 {
     Hook::fire('object_definition', 'ProjectFileRevision', self::$columns);
     parent::__construct('ProjectFileRevision', 'project_file_revisions', true);
 }
 /**
  * Construct
  *
  * @return BaseProjectWebpages
  */
 function __construct()
 {
     Hook::fire('object_definition', 'ProjectWebpage', self::$columns);
     parent::__construct('ProjectWebpage', 'project_webpages', true);
 }
 /**
  * Construct
  *
  * @return BaseProjectMilestones
  */
 function __construct()
 {
     Hook::fire('object_definition', 'ProjectMilestone', self::$columns);
     parent::__construct('ProjectMilestone', 'project_milestones', true);
 }
 /**
 * Construct
 *
 * @return BaseProjectForms 
 */
 function __construct() {
 	Hook::fire('object_definition', 'ProjectForm', self::$columns);
   parent::__construct('ProjectForm', 'project_forms', true);
 } // __construct
 /**
  * Construct
  *
  * @return BaseMailContents
  */
 function __construct()
 {
     Hook::fire('object_definition', 'MailContent', self::$columns);
     parent::__construct('MailContent', 'mail_contents', true);
 }
 /**
  * Construct
  *
  * @return BaseCOTemplates
  */
 function __construct()
 {
     Hook::fire('object_definition', 'COTemplate', self::$columns);
     parent::__construct('COTemplate', 'templates', true);
 }