00001 <?php 00002 00016 // $Id: HelpTopicSection.inc.php,v 1.7 2008/07/01 01:16:09 asmecher Exp $ 00017 00018 00019 class HelpTopicSection extends DataObject { 00020 00024 function HelpTopicSection() { 00025 parent::DataObject(); 00026 } 00027 00028 // 00029 // Get/set methods 00030 // 00031 00036 function getTitle() { 00037 return $this->getData('title'); 00038 } 00039 00044 function setTitle($title) { 00045 $this->setData('title', $title); 00046 } 00047 00052 function getContent() { 00053 return $this->getData('content'); 00054 } 00055 00060 function setContent($content) { 00061 $this->setData('content', $content); 00062 } 00063 00064 } 00065 00066 ?>
1.5.6