echo $link_self; ?> " rel="self" type="application/rss+xml" /> <?php foreach ((array) $posts as $bb_post) { ?> <item> <title><?php post_author(); ?> <?php _e('on'); ?> "<?php topic_title($bb_post->topic_id); ?> "</title> <link><?php post_link(); ?> </link> <pubDate><?php bb_post_time(array('format' => 'D, d M Y H:i:s +0000', 'localize' => false)); ?> </pubDate> <dc:creator><?php post_author(); ?> </dc:creator> <guid isPermaLink="false"><?php
<?php if ($topics) { ?> <ol> <?php foreach ($topics as $topic) { ?> <li<?php alt_class('topics'); ?> > <a href="<?php topic_link(); ?> "><?php topic_title(); ?> </a> - <?php printf(__('Started: %s ago'), get_topic_start_time()); ?> | <span class="freshness"><?php if (get_topic_start_time('timestamp') < get_topic_time('timestamp')) { printf(__('Most recent reply: %s ago'), get_topic_time()); } else { _e('No replies.'); } ?> </span>
function bb_admin_list_posts() { global $bb_posts, $bb_post; if (!$bb_posts) { ?> <p class="no-results"><?php _e('No posts found.'); ?> </p> <?php } else { ?> <table id="posts-list" class="widefat" cellspacing="0" cellpadding="0"> <thead> <tr> <th scope="col" class="check-column"><input type="checkbox" /></th> <th scope="col"><?php _e('Post'); ?> </th> <th scope="col"><?php _e('Author'); ?> </th> <th scope="col"><?php _e('Topic'); ?> </th> <th scope="col"><?php _e('Date'); ?> </th> </tr> </thead> <tfoot> <tr> <th scope="col" class="check-column"><input type="checkbox" /></th> <th scope="col"><?php _e('Post'); ?> </th> <th scope="col"><?php _e('Author'); ?> </th> <th scope="col"><?php _e('Topic'); ?> </th> <th scope="col"><?php _e('Date'); ?> </th> </tr> </tfoot> <tbody> <?php foreach ($bb_posts as $bb_post) { ?> <tr id="post-<?php post_id(); ?> "<?php alt_class('post', post_del_class()); ?> > <td class="check-column"><input type="checkbox" name="post[]" value="<?php post_id(); ?> " /></td> <td class="post"> <?php post_text(); ?> <div> <span class="row-actions"> <a href="<?php echo esc_url(get_post_link()); ?> "><?php _e('View'); ?> </a> <?php bb_post_admin(array('before_each' => ' | ', 'each' => array('undelete' => array('before' => ' ')), 'last_each' => array('before' => ' | '))); ?> </span> </div> </td> <td class="author"> <?php if (get_post_author_id()) { ?> <a href="<?php user_profile_link(get_post_author_id()); ?> "> <?php post_author_avatar('16'); ?> <?php post_author(); ?> </a> <?php } else { ?> <span> <?php post_author_avatar('16'); ?> <?php post_author(); ?> </span> <?php } ?> </td> <td class="topic"> <a href="<?php topic_link($bb_post->topic_id); ?> "><?php topic_title($bb_post->topic_id); ?> </a> </td> <td class="date"> <?php if (bb_get_post_time('U') < time() - 86400) { bb_post_time('Y/m/d\\<\\b\\r \\/\\>H:i:s'); } else { printf(__('%s ago'), bb_get_post_time('since')); } ?> </td> </tr> <?php } ?> </tbody> </table> <?php } }