0byt3m1n1
Path:
/
data
/
applications
/
aps
/
phpwiki
/
1.3.14-6
/
standard
/
htdocs
/
themes
/
shamino_com
/
templates
/
[
Home
]
File: actionbar.tmpl
<?php // -*-php-*- if (empty($revision)) $revision = $page->getCurrentRevision(false); ?> <!-- $Id: actionbar.tmpl,v 1.2 2007/01/02 13:29:40 rurban Exp $ --> <?= Button(array('action'=>'PageInfo'),_("PageInfo"),$page->getName()) ?> <?=$SEP?><?= Button("edit", $revision->isCurrent() ? _("Edit") : _("Edit Old Revision")) ?> <?php if ($user->isAdmin() or mayAccessPage('change',$page->getName())) { ?> <?=$SEP?><?= Button($page->get('locked') ? 'unlock' : 'lock') ?> <?php if (ENABLE_PAGEPERM) { ?> <?=$SEP?><?= Button('chown') ?> <?=$SEP?><?= Button('setacl') ?> <?php } ?> <?php } ?> <?php if ($user->isAdmin() or mayAccessPage('remove',$page->getName())) { ?> <?=$SEP?><?= Button('remove') ?> <?php } ?> <?php if (!empty($user) && $user->isAdmin()) { ?> <?=$SEP?><?= WikiLink(_("PhpWikiAdministration"), "","Admin") ?> <!-- Buttons really only for debugging. See info for more --> <?=$SEP?><?= Button(_("PageHistory")) ?> <?=$SEP?><?= Button("diff") ?> <?=$SEP?><?= Button(_("PageDump")) ?> <!-- End debugging buttons --> <?php } ?>