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