1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
<?php // -*-php-*-
rcs_id('$Id: GoTo.php,v 1.4 2004/07/08 20:30:07 rurban Exp $');
/**
* Display a form with text entry box and 'Go' button.
* The user enters a page name... if it exists, browse
* that page; if not, edit (create) that page.
* Note: pagenames are absolute, not relative to the actual subpage.
*
* Usage: <?plugin GoTo ?>
* @author: Michael van Dam
*/
class WikiPlugin_GoTo
extends WikiPlugin
{
function getName () {
return _("GoTo");
}
function getDescription () {
return _("Go to or create page.");
}
function getDefaultArguments() {
return array('size' => 32);
}
function run($dbi, $argstr, &$request, $basepage) {
$request->setArg('action',false);
$args = $this->getArgs($argstr, $request);
extract($args);
if ($goto = $request->getArg('goto')) {
// The user has pressed 'Go'; process request
$request->setArg('goto', false);
$target = $goto['target'];
if ($dbi->isWikiPage($target))
$url = WikiURL($target,0,1);
else
$url = WikiURL($target, array('action'=>'edit'),1);
$request->redirect($url);
// User should see nothing after redirect
return '';
}
$action = $request->getURLtoSelf();
$form = HTML::form(array('action'=>$action,
'method'=>'post'
));
$form->pushContent(HiddenInputs($request->getArgs()));
$textfield = HTML::input(array('type' => 'text',
'size' => $size,
'name' => 'goto[target]'));
$button = Button('submit:goto[go]', _("Go"), false);
$form->pushContent($textfield, $button);
return $form;
}
};
// $Log: GoTo.php,v $
// Revision 1.4 2004/07/08 20:30:07 rurban
// plugin->run consistency: request as reference, added basepage.
// encountered strange bug in AllPages (and the test) which destroys ->_dbi
//
// Revision 1.3 2004/04/18 01:11:52 rurban
// more numeric pagename fixes.
// fixed action=upload with merge conflict warnings.
// charset changed from constant to global (dynamic utf-8 switching)
//
// Revision 1.2 2004/04/12 16:21:01 rurban
// fix lib/plugin/RssFeed.php:81: Notice[8]: Undefined variable: th
//
// Local Variables:
// mode: php
// tab-width: 8
// c-basic-offset: 4
// c-hanging-comment-ender-p: nil
// indent-tabs-mode: nil
// End:
?>
|