]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/actionbar.tmpl
rcs_id no longer makes sense with Subversion global version number
[SourceForge/phpwiki.git] / themes / default / templates / actionbar.tmpl
1 <?php // -*-php-*-
2 // rcs_id('$Id$');
3 ?>
4 <?php if (!$WikiTheme->DUMP_MODE) { ?>
5 <?php /* I would like not to have to use these tables, and managed to
6        * get this stuff to work more or less correctly using
7        * CSSs float:left; and float:right;.  However float:right; seems
8        * to cause MSIE4.01/NT to hang. 
9        * So, we use tables...  */ ?>
10 <table summary="Toolbar 1: Page actions and user login."
11        width="100%" cellpadding="0" cellspacing="0" border="0">
12 <tr valign="baseline">
13   <td>
14   <div id="actionbuttons">
15     <?php if ((!$page->get('locked') || $user->isAdmin()) and $revision) { ?>
16       <?= Button("edit", $revision->isCurrent() ? _("Edit") : _("Edit Old Revision"), false, array('id'=>'btn-edit')) ?>
17       <? if (ENABLE_WYSIWYG) { ?>
18         <?=$SEP?><?= Button(array("action" => "edit", "mode"=> "wysiwyg"), "Wysiwyg Editor", false, array('id' => 'btn-wysiwyg-edit')) ?>
19       <?php } ?>
20     <?php } else { ?>
21       <?= Button("viewsource", _("View Source")) ?>
22     <?php } ?>
23     <?php if ($user->isAdmin() or mayAccessPage('change', $page->getName())) { ?>
24       <?=$SEP?><?= Button($page->get('locked') ? 'unlock' : 'lock') ?>
25     <?php if (ENABLE_PAGEPERM and mayAccessPage('change', $page->getName())) { ?>
26       <?=$SEP?><?= Button('chown') ?>
27       <?=$SEP?><?= Button('setacl') ?>
28       <?=$SEP?><?= Button('rename') ?>
29     <?php }} ?>
30     <?php if ($revision and ($user->isAdmin() or mayAccessPage('remove', $page->getName()))) { ?>
31       <?=$SEP?><?= Button('revert',_("Revert"), $revision->isCurrent() ? $page->GetRevisionBefore() : $revision) ?>
32       <?=$SEP?><?= Button('remove') ?>
33     <?php } ?>
34     <?=$SEP?><?= Button("PageHistory", _("PageHistory")) ?>
35     <?=$SEP?><?= Button("diff") ?> 
36     <?=$SEP?><?= Button("PageInfo", _("PageInfo")) ?>
37 <?php if ((DEBUG and $request->getArg('action') == 'browse') || $user->isAdmin()) { ?> 
38     <!-- Buttons really only for debugging -->
39     <?=$SEP?><?= Button("DebugInfo", _("DebugInfo")) ?>
40     <?=$SEP?><?= Button("PageDump", _("PageDump")) ?>
41 <?php
42     if (DEBUG & _DEBUG_SQL and USECACHE) {
43       $PurgeCache = Button(array('nocache' => 'purge'),
44                      _("PurgeHtmlCache"), $page->getName());
45       $PurgeCache->addTooltip(_("Purge HTML cache for this page. Regenerate from WikiMarkup when next accessed."));
46 ?>
47       <?=$SEP?><?= $PurgeCache ?>
48 <?php } ?>
49     <!-- End debugging buttons -->
50 <?php } ?>
51 <?php if (defined('USE_EXTERNAL_HTML2PDF') and USE_EXTERNAL_HTML2PDF) { ?> 
52       <?=$SEP?><?= Button("pdf","Pdf",'wikiclear',array('id'=>'btn-pdf')) ?>
53 <?php } ?>
54   </div>
55   </td>
56 <?php if (empty($NOSIGNIN)) { ?>
57 <?php
58 /* valign="top" is not ideal here but required to get reasonable alignment
59    with the other action buttons in some browsers, like OmniWeb and Safari
60    (therefore probably Konquorer too) */ ?>
61   <td align="right" valign="top">
62     <div id="signin"><?= Template('signin') ?></div>
63   </td>
64 <?php } ?>
65 </tr>
66 </table>
67 <?php } ?>