]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/AddComment.php
getName should not translate
[SourceForge/phpwiki.git] / lib / plugin / AddComment.php
1 <?php
2
3 /*
4  * Copyright (C) 2004 $ThePhpWikiProgrammingTeam
5  *
6  * This file is part of PhpWiki.
7  *
8  * PhpWiki is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * PhpWiki is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  */
22
23 /**
24  * This plugin allows user comments attached to a page, similar to WikiBlog.
25  * Based on WikiBlog, no summary.
26  *
27  * TODO:
28  * For admin user, put checkboxes beside comments to allow for bulk removal.
29  *
30  * @author: ReiniUrban
31  */
32
33 include_once 'lib/plugin/WikiBlog.php';
34
35 class WikiPlugin_AddComment
36     extends WikiPlugin_WikiBlog
37 {
38     function getDescription()
39     {
40         return sprintf(_("Show and add comments for %s."), '[pagename]');
41     }
42
43     // Arguments:
44     //
45     //  page - page where the comment is attached at (default current page)
46     //
47     //  order - 'normal'  - place in chronological order
48     //        - 'reverse' - place in reverse chronological order
49     //
50     //  mode - 'show'     - only show old comments
51     //         'add'      - only show entry box for new comment
52     //         'show,add' - show old comments, then entry box
53     //         'add,show' - show entry box followed by list of comments
54     //  jshide - boolean  - quick javascript expansion of the comments
55     //                      and addcomment box
56
57     function getDefaultArguments()
58     {
59         return array('pagename' => '[pagename]',
60             'order' => 'normal',
61             'mode' => 'add,show',
62             'jshide' => '0',
63             'noheader' => false,
64             //'sortby'     => '-pagename' // oldest first. reverse by order=reverse
65         );
66     }
67
68     function run($dbi, $argstr, &$request, $basepage)
69     {
70         $args = $this->getArgs($argstr, $request);
71         if (!$args['pagename']) {
72             return $this->error(sprintf(_("A required argument ā€œ%sā€ is missing."), 'pagename'));
73         }
74
75         // Get our form args.
76         $comment = $request->getArg("comment");
77         $request->setArg('comment', false);
78
79         if ($request->isPost() and !empty($comment['addcomment'])) {
80             $this->add($request, $comment, 'comment'); // noreturn
81         }
82
83         // Now we display previous comments and/or provide entry box
84         // for new comments
85         $html = HTML();
86         if ($args['jshide']) {
87             $div = HTML::div(array('id' => 'comments', 'style' => 'display:none;'));
88             //$list->setAttr('style','display:none;');
89             $div->pushContent(Javascript("
90 function togglecomments(a) {
91   comments=document.getElementById('comments');
92   if (comments.style.display=='none') {
93     comments.style.display='block';
94     a.title='" . _("Click to hide the comments") . "';
95   } else {
96     comments.style.display='none';
97     a.title='" . _("Click to display all comments") . "';
98   }
99 }"));
100             $html->pushContent(HTML::h4(HTML::a(array('name' => 'comment-header',
101                     'class' => 'wikiaction',
102                     'title' => _("Click to display"),
103                     'onclick' => "togglecomments(this)"),
104                 _("Comments"))));
105         } else {
106             $div = HTML::div(array('id' => 'comments'));
107         }
108         foreach (explode(',', $args['mode']) as $show) {
109             if (!empty($seen[$show]))
110                 continue;
111             $seen[$show] = 1;
112             switch ($show) {
113                 case 'show':
114                     $show = $this->showAll($request, $args, 'comment');
115                     //if ($args['jshide']) $show->setAttr('style','display:none;');
116                     $div->pushContent($show);
117                     break;
118                 case 'add':
119                     global $WikiTheme;
120                     if (!$WikiTheme->DUMP_MODE) {
121                         $add = $this->showForm($request, $args, 'addcomment');
122                         //if ($args['jshide']) $add->setAttr('style','display:none;');
123                         $div->pushContent($add);
124                     }
125                     break;
126                 default:
127                     return $this->error(sprintf("Bad mode (ā€œ%sā€)", $show));
128             }
129         }
130         $html->pushContent($div);
131         return $html;
132     }
133
134 }
135
136 // Local Variables:
137 // mode: php
138 // tab-width: 8
139 // c-basic-offset: 4
140 // c-hanging-comment-ender-p: nil
141 // indent-tabs-mode: nil
142 // End: