0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
phpwiki
/
1.3.14-6
/
standard
/
htdocs
/
themes
/
blog
/
templates
/
[
Home
]
File: sidebar.tmpl
<?php // -*-html-*- rcs_id('$Id: sidebar.tmpl,v 1.3 2007/01/07 20:20:19 rurban Exp $'); $id = isBrowserIE() ? 'sidebar' : 'moz-sidebar'; ?> <div id="<?=$id?>"> <?php /* Today's Blogs page for the current or admin user, if the subpage is defined. */ $UserCalPageTitle = $user->getId() . SUBPAGE_SEPARATOR . _("Blog"); $dbi = $request->getDbh(); // display flat calender dhtml under the clock if (!$dbi->isWikiPage($UserCalPageTitle) and BLOG_EMPTY_DEFAULT_PREFIX) { $UserCalPageTitle = _("Blog"); } ?> <div class="box"> <div class="box-title"><?= WikiLink($UserCalPageTitle,'known',_("Calendar")) ?></div> <div class="box-data"> <?= Template('calendar') ?> </div></div> <?php include_once("lib/WikiPlugin.php"); $box = new PluginSidebarBox("BlogArchives"); printXml($box->format()); $box = new RelatedLinksBox(); $body = $box->body; if ($body->asString() != "") printXml($box->format()); $box = new PluginSidebarBox("RecentChanges"); printXml($box->format()); $box = new PluginSidebarBox("WhoIsOnline"); printXml($box->format()); /* $box = new PluginSidebarBox("RssFeed", array('url' => 'http://phpwiki.sourceforge.net/phpwiki/RecentChanges?format=rss', 'title' => _("PhpWiki News"))); printXml($box->format()); */ ?> <?php if (0 and defined('USE_EXTERNAL_HTML2PDF') and USE_EXTERNAL_HTML2PDF) { ?> · <?= Button(array('action'=>'pdf'), "Pdf") ?> <?php } ?> <!-- The top navigation/search bar --> <div class="toolbar"><?= Template('navbar') ?></div> </div>