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