getData('title'); } /** * Set section title. * @param $title string */ function setTitle($title) { $this->setData('title', $title); } /** * Get section content (assumed to be in HTML format). * @return string */ function getContent() { return $this->getData('content'); } /** * Set section content. * @param $content string */ function setContent($content) { $this->setData('content', $content); } } ?>