4 * @file classes/help/HelpTopicSection.inc.php
6 * Copyright (c) 2000-2009 John Willinsky
7 * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
9 * @class HelpTopicSection
12 * @brief Help section class, designated a subsection of a topic.
13 * A HelpTopicSection is associated with a single HelpTopic.
16 // $Id: HelpTopicSection.inc.php,v 1.3 2009/04/08 21:34:54 asmecher Exp $
19 class HelpTopicSection
extends DataObject
{
24 function HelpTopicSection() {
37 return $this->getData('title');
42 * @param $title string
44 function setTitle($title) {
45 $this->setData('title', $title);
49 * Get section content (assumed to be in HTML format).
52 function getContent() {
53 return $this->getData('content');
57 * Set section content.
58 * @param $content string
60 function setContent($content) {
61 $this->setData('content', $content);