0byt3m1n1
Path:
/
data
/
applications
/
aps
/
phpwiki
/
1.4.0-0
/
standard
/
htdocs
/
themes
/
blog
/
templates
/
[
Home
]
File: wikiblog.tmpl
<?php // -*- php -*- // rcs_id('$Id: wikiblog.tmpl 7589 2010-07-02 07:31:33Z vargenau $'); $CDATE = $WikiTheme->formatDateTime($BLOG_CTIME); $buttons = $modified = ''; if ($user->isAdmin() or $user->getId() == $BLOG_CREATOR) { $buttons = HTML::small(array('class' => 'floatleft'), Button('edit', false, $page)); if ($user->isAdmin()) { $buttons->pushContent(" - "); $buttons->pushContent(Button('remove', false, $page)); } } // This is a hack, but since we only have a fake PageRevision, // we can't get the version. if ($rev->get('mtime') != $BLOG_CTIME) { $modified = HTML::small(array('class' => 'floatright'), fmt("Comment modified on %s by %s", $WikiTheme->formatDateTime($rev->get('mtime')), WikiLink($rev->get('author')))); } ?> <div title="<?php echo fmt("Comments on %s by %s.", $BLOG_PARENT, $BLOG_CREATOR)?>" class="wikiblog wikitext"> <!-- <div class="wikiblog-header"> <strong class="floatleft"><?php echo WikiLink($page, 'known', $CDATE) ?></strong> <strong class="floatright"><?php echo WikiLink($BLOG_CREATOR, 'if_known') ?></strong> <br class="clear-floats" /> </div> --> <div class="wikiblog-body"> <?php if ($rev->get('summary')) { ?> <h3 class="wikiblog-summary"><?php echo $rev->get('summary') ?></h3> <?php } ?> <?php echo $CONTENT ?> </div> <?php if ($buttons or $modified) { ?> <div class="wikiblog-footer"> <?php echo $buttons ?> <?php echo $modified ?> <br class="clear-floats" /> </div> <?php } ?> </div> <hr class="no-css" />