0byt3m1n1
Path:
/
data
/
applications
/
aps
/
phpwiki
/
1.4.0-0
/
standard
/
htdocs
/
themes
/
Portland
/
templates
/
[
Home
]
File: navbar.tmpl
<?php // -*-php-*- // rcs_id('$Id: navbar.tmpl 7589 2010-07-02 07:31:33Z vargenau $'); ?> <!-- The bottom navigation/search bar --> <?php echo WikiLink(_("FindPage"), "button") ?> by searching <?php if ($revision) { ?> (or browse <?php echo Button("LikePages", _("LikePages")) ?>) <?php } ?> <?php if ($user->isAdmin()) { ?> <?php echo $SEP?><?php echo Button($page->get('locked') ? 'unlock' : 'lock')?> <?php echo $SEP?><?php echo 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> <?php echo WikiLink(_("RecentChanges"), "button") ?> <?php if ($user->isAdmin()) { ?> <?php echo $SEP?><?php echo WikiLink(_("PhpWikiAdministration"), "button") ?> <?php } ?> </td> <td align="right"> <?php echo Template('signin') ?> </td> </tr></table>