]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/MonoBook/templates/actionbar.tmpl
Case consistency
[SourceForge/phpwiki.git] / themes / MonoBook / templates / actionbar.tmpl
1 <?php // -*-php-*- ?>
2 <!-- $Id$ -->
3 <?php
4   //$p = $WikiTheme->tooltipAccessKeyPrefix();
5   $dbh = $request->getDbh();
6   $isAdmin = $user->isAdmin();
7   $pagename = $page->getName();
8   $isActionPage = $request->_isActionPage($pagename, false);
9   $isBrowse = $request->getArg('action') == 'browse';
10 ?>
11 <div class="portlet" id="p-cactions">
12   <h5>Views</h5>
13   <ul>
14     <?php if (!string_ends_with($pagename, _("/Discussion"))) { ?>
15     <?php $talk = new WikiPageName('Talk:'.$pagename); ?>
16       <?= ActionButton(array(),
17                        $isActionPage ? _("ActionPage") : _("Article"), 
18                        $talk->getParent(), array('class'=>$isBrowse ? "selected" : "", 'title' => "View the page [alt-c]")) ?>
19       <?php if (!$isActionPage) { ?>
20         <?php if ($dbh->isWikiPage($talk->getName())) { ?>
21           <?= ActionButton(array('action'=>'browse'), _("Discussion"), $talk->getName()) ?>
22         <?php } else { ?>
23           <?= ActionButton(array('action'=>'create',
24                                  'template'=>_("TemplateTalk")),
25                            _("Discussion"), $talk->getName()) ?>
26         <?php } ?>
27       <?php } ?>
28     <?php } else {
29       $talk = new WikiPageName($pagename); ?>
30       <?= ActionButton(array(),$isActionPage ? _("ActionPage") : _("Article"), $talk->getParent(), array('title' => "View the page [alt-c]")) ?>
31       <?= ActionButton(array(),_("Discussion"), $talk->getName(), array('class'=>$isBrowse ? "selected" : "")) ?>
32     <?php } ?>
33     <?php if (($isAdmin or mayAccessPage('edit', $pagename)) and $revision) { ?>
34     <?= ActionButton("edit", $revision->isCurrent() ? _("Edit") : _("Edit Old Revision"), false, 
35                      array('id' => 'btn-edit', 'title' => "You can edit this page. Please use the preview button before saving. [alt-e]")) ?>
36     <?php } else { ?>
37       <?= ActionButton("viewsource", _("View Source")) ?>
38     <?php } ?>
39     <?= ActionButton(_("PageHistory"),_("History"),false,array('title'=>"Past versions of this page. [alt-h]")) ?>
40     <?= ActionButton("diff") ?> 
41     <? if ( $user->isSignedIn() ) { ?>
42       <?= ActionButton("WatchPage", _("Watch"), false, 
43                        array('title'=>"Add/Remove this to/from the list of pages you're monitoring for changes [alt-l]")) ?>
44     <?php } ?>
45   </ul>
46 </div>
47 <div class="portlet" id="p-tbx">
48   <h5>Special Actions</h5>
49   <div class="pBody">
50   <ul>
51     <? if ( $user->isSignedIn() ) { ?>
52      <?php if ($isAdmin or mayAccessPage('change', $pagename)) { ?>
53       <?= ActionButton($page->get('locked') ? 'unlock' : 'lock') ?>
54       <?= ActionButton('rename') ?>
55       <?php if (ENABLE_PAGEPERM and mayAccessPage('change', $pagename)) { ?>
56        <?= ActionButton('chown') ?>
57        <?= ActionButton('setacl') ?>
58      <?php }} ?>
59      <?php if (!empty($revision) and ($isAdmin or mayAccessPage('remove', $pagename))) { ?>
60       <?= ActionButton('revert',_("Revert"), $revision->isCurrent() ? $page->GetRevisionBefore() : $revision) ?>
61       <?= ActionButton('remove') ?>
62      <?php } ?>
63     <?php } ?>
64     <?= ActionButton(array('action'=>_("PageInfo")), _("Info"), $pagename) ?>
65     <?= ActionButton(array('action'=>_("PageHistory")), _("Page history"), $pagename) ?>
66     <?= ActionButton(array('action'=>_("AuthorHistory")), _("Author history"), $pagename) ?>
67     <?= ActionButton("diff") ?> 
68     <?= ActionButton(array('action'=>_("PageDump")), _("Page dump"), $pagename) ?>
69     <?php if (DEBUG and USECACHE) {
70       $PurgeCache = ActionButton(array('nocache' => 'purge'),
71                      _("Purge HTML cache"), $pagename);
72       $PurgeCache->addTooltip(_("Purge HTML cache for this page. Regenerate from WikiMarkup when next accessed.")); ?>
73       <?= $PurgeCache ?>
74     <?php } ?>
75   </ul>
76   </div>
77 </div>