]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/blog/templates/actionbar.tmpl
rcs_id no longer makes sense with Subversion global version number
[SourceForge/phpwiki.git] / themes / blog / templates / actionbar.tmpl
1 <?php // -*-php-*-
2 // rcs_id('$Id$');
3 ?>
4 <table summary="Toolbar: Mani Navigation"
5        width="100%" cellpadding="0" cellspacing="0" border="0">
6 <tr valign="baseline">
7   <td>
8   <div class="actionbuttons">
9     <?= WikiLink(HOME_PAGE, "known",_("Home")) ?>
10     <?=$SEP?><?= WikiLink(_("About")) ?>
11     <?=$SEP?><?= WikiLink(_("BlogArchives"),'',_("Archives")) ?>
12     <?=$SEP?><?= WikiLink(_("PhotoAlbum")) ?>
13     <?=$SEP?><?= WikiLink(_("HowTo")) ?>
14     <?=$SEP?><?= WikiLink(_("RecentChanges")) ?>
15     <?=$SEP?><?= Button("PageInfo", _("Info")) ?>
16 <?php 
17 if ($user->isAuthenticated()) {
18     if (mayAccessPage('edit', $page->getName()))
19         $EditB = Button("edit",_("Edit"),false,array('id'=>'btn-edit'));
20     else
21         $EditB = Button("viewsource", _("View Source")); 
22 ?>
23     <?= $SEP?><?= $EditB ?>
24     <?php } ?>
25   </div>
26   </td>
27   <td>
28     <?= Template("search") ?>
29   </td>
30 </tr>
31 </table>