]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/WikiForm.php
Whitespace only
[SourceForge/phpwiki.git] / lib / plugin / WikiForm.php
1 <?php
2
3 /**
4  * Copyright 1999, 2000, 2001, 2002, 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 is a replacement for MagicPhpWikiURL forms.
25  * Just a few old actions are supported, which where previously
26  * encoded with the phpwiki: syntax.
27  */
28 class WikiPlugin_WikiForm
29 extends WikiPlugin
30 {
31     function getName () {
32         return _("WikiForm");
33     }
34
35     function getDescription () {
36         return _("Provide generic WikiForm input buttons");
37     }
38
39     function getDefaultArguments() {
40         return array('action' => 'upload', // 'upload', 'loadfile',
41                                            // 'dumphtml' or 'dumpserial'
42                      'default' => false,
43                      'buttontext' => false,
44                      'overwrite' => false,
45                      'size' => 50);
46     }
47
48     function run($dbi, $argstr, &$request, $basepage) {
49         extract($this->getArgs($argstr, $request));
50         $form = HTML::form(array('action' => $request->getPostURL(),
51                                  'method' => 'post',
52                                  'class'  => 'wikiadmin',
53                                  'accept-charset' => $GLOBALS['charset']),
54                            HiddenInputs(array('action' => $action,
55                                               'overwrite' => $overwrite,
56                                               'pagename' => $basepage)));
57         $input = array('type' => 'text',
58                        'value' => $default,
59                        'size' => $size);
60
61         switch ($action) {
62         case 'loadfile':
63             $input['name'] = 'source';
64             if (!$default)
65                 $input['value'] = DEFAULT_DUMP_DIR;
66             if (!$buttontext)
67                 $buttontext = _("Load File");
68             $class = false;
69             break;
70         case 'dumpserial':
71             $input['name'] = 'directory';
72             if (!$default)
73                 $input['value'] = DEFAULT_DUMP_DIR;
74             if (!$buttontext)
75                 $buttontext = _("Dump Pages");
76             $class = 'wikiadmin';
77             break;
78         case 'dumphtml':
79             $input['name'] = 'directory';
80             if (!$default)
81                 $input['value'] = HTML_DUMP_DIR;
82             if (!$buttontext)
83                 $buttontext = _("Dump Pages as XHTML");
84             $class = 'wikiadmin';
85             break;
86         case 'upload':
87             $form->setAttr('enctype', 'multipart/form-data');
88             $form->pushContent(HTML::input(array('name' => 'MAX_FILE_SIZE',
89                                                  'value' =>  MAX_UPLOAD_SIZE,
90                                                  'type'  => 'hidden')));
91             $input['name'] = 'file';
92             $input['type'] = 'file';
93             if (!$buttontext)
94                 $buttontext = _("Upload");
95             $class = false; // local OS function, so use native OS button
96             break;
97         default:
98             return HTML::div(array('class' => "error"), fmt("WikiForm: %s: unknown action", $action));
99         }
100
101         $input = HTML::input($input);
102         $input->addTooltip($buttontext);
103         $button = Button('submit:', $buttontext, $class);
104         if ($request->getArg('start_debug'))
105             $form->pushContent(HTML::input(array('name' => 'start_debug',
106                                                  'value' =>  $request->getArg('start_debug'),
107                                                  'type'  => 'hidden')));
108         $form->pushContent(HTML::span(array('class' => $class),
109                                       $input, $button));
110
111         return $form;
112     }
113 };
114
115 // Local Variables:
116 // mode: php
117 // tab-width: 8
118 // c-basic-offset: 4
119 // c-hanging-comment-ender-p: nil
120 // indent-tabs-mode: nil
121 // End: