]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/GoTo.php
from sf.net patch #622797 by Michael van Dam,
[SourceForge/phpwiki.git] / lib / plugin / GoTo.php
1 <?php // -*-php-*-
2 rcs_id('$Id: GoTo.php,v 1.1 2004-04-12 13:16:54 rurban Exp $');
3
4 /**
5  *  Display a form with text entry box and 'Go' button.
6  *  The user enters a page name... if it exists, browse
7  *  that page; if not, edit (create) that page.
8  *  Note: pagenames are absolute, not relative to the actual subpage.
9  *
10  *  Usage: <?plugin GoTo ?>
11  *  @author: Michael van Dam
12  */
13
14 class WikiPlugin_GoTo
15 extends WikiPlugin
16 {
17     function getName () {
18         return _("GoTo");
19     }
20
21     function getDescription () {
22         return _("Go to or create page.");
23     }
24     
25     function getDefaultArguments() {
26         return array();
27     }
28
29     function run($dbi, $argstr, $request, $basepage) {
30         $request->setArg('action',false);
31         $args = $this->getArgs($argstr, $request);
32         extract($args);
33
34         if ($goto = $request->getArg('goto')) {
35             // The user has pressed 'Go'; process request
36             $request->setArg('goto', false);
37             $target = $goto['target'];
38             if ($dbi->isWikiPage($target))
39                 $url = WikiURL($target,0,1);
40             else
41                 $url = WikiURL($target, array('action'=>'edit'),1);
42
43             $request->redirect($url);
44             // User should see nothing after redirect
45             return '';
46         } 
47
48         $action = $request->getURLtoSelf();
49         $form = HTML::form(array('action'=>$action,
50                                  'method'=>'post'
51                           ));
52  
53         $form->pushContent(HiddenInputs($request->getArgs()));
54
55         $textfield = HTML::input(array('type'=>'text',
56                                        'size'=>32,
57                                        'name'=>'goto[target]'));
58
59         $button = Button('submit:goto[go]', _("Go"), false);
60
61         $form->pushContent($textfield, $button);
62
63         return $form;
64
65     }
66 };
67         
68 // Local Variables:
69 // mode: php
70 // tab-width: 8
71 // c-basic-offset: 4
72 // c-hanging-comment-ender-p: nil
73 // indent-tabs-mode: nil
74 // End:   
75 ?>