0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
phpwiki
/
1.3.14-6
/
standard
/
htdocs
/
themes
/
Portland
/
templates
/
[
Home
]
File: navbar.tmpl
<?php // -*-html-*- ?> <!-- $Id: navbar.tmpl,v 1.11 2007/01/02 13:29:40 rurban Exp $ --> <!-- The bottom navigation/search bar --> <?= WikiLink(_("FindPage"), "button") ?> by searching <?php if ($revision) { ?> (or browse <?= Button("LikePages", _("LikePages")) ?>) <?php } ?> <?php if ($user->isAdmin()) { ?> <?=$SEP?><?= Button($page->get('locked') ? 'unlock' : 'lock')?> <?=$SEP?><?= Button('remove') ?> <?php } ?> <hr /> <!-- I would like not to have to use these tables, and managed to get this stuff to work more or less correctly using CSSs float:left; and float:right;. However float:right; seems to cause MSIE4.01/NT to hang. So, we use tables... --> <table summary="Toolbar 1: Navigation and user login." class="toolbar" width="100%" cellpadding="0" cellspacing="0" border="0" id="actionbar"> <tr valign="baseline"> <td> <?= WikiLink(_("RecentChanges"), "button") ?> <?php if ($user->isAdmin()) { ?> <?=$SEP?><?= WikiLink(_("PhpWikiAdministration"), "button") ?> <?php } ?> </td> <td align="right"> <?= Template('signin') ?> </td> </tr></table>