00001 <?php 00002 00019 //$Id$ 00020 00021 import('rt.RT'); 00022 import('rt.ocs.RTDAO'); 00023 00024 class ConferenceRT extends RT { 00025 var $conferenceId; 00026 var $enabled; 00027 00029 var $addComment; 00030 00031 function ConferenceRT($conferenceId) { 00032 $this->setConferenceId($conferenceId); 00033 } 00034 00035 // Getter/setter methods 00036 00037 function getConferenceId() { 00038 return $this->conferenceId; 00039 } 00040 00041 function setConferenceId($conferenceId) { 00042 $this->conferenceId = $conferenceId; 00043 } 00044 00045 function setAddComment($addComment) { 00046 $this->addComment = $addComment; 00047 } 00048 00049 function getAddComment() { 00050 return $this->addComment; 00051 } 00052 } 00053 00054 ?>
1.4.7