adding POD

This commit is contained in:
JT Smith 2003-10-19 16:55:33 +00:00
parent c105522d86
commit 83db4d0e95
3 changed files with 553 additions and 6 deletions

View file

@ -33,6 +33,21 @@ Data management class for forums.
$forum = WebGUI::Forum->create(\%forumParams);
$forum = WebGUI::Forum->new($forumId);
$boolean = $forum->canPost;
$scalar = $forum->get($param);
$obj = $forum->getThread($threadId);
$boolean = $forum->isModerator;
$boolean = $forum->isSubscribed;
$forum->incrementReplies($postDate, $postId);
$forum->incrementThreads($postDate, $postId);
$forum->incrementViews;
$forum->purge;
$forum->recalculateRating;
$forum->set(\%data);
$forum->subscribe;
$forum->unsubscribe;
=head1 METHODS
These methods are available from this class: