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>&nbsp;
			</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 
    }
}
Ejemplo n.º 2
0
topic_tags();
?>

<div style="clear:both;"></div>
</div>
<?php 
do_action('under_title');
if ($posts) {
    topic_pages(array('before' => '<div class="nav">', 'after' => '</div>'));
    ?>
<div id="ajax-response"></div>
<ol id="thread" class="list:post">

<?php 
    foreach ($posts as $bb_post) {
        $del_class = apply_filters('best_answer_class', post_del_class());
        ?>
	<li id="post-<?php 
        post_id();
        ?>
"<?php 
        alt_class('post', $del_class);
        ?>
>
<?php 
        bb_post_template();
        ?>
	</li>
<?php 
    }
    ?>
Ejemplo n.º 3
0
        <p class="topic-meta">
                <?php 
printf(__('Started %1$s ago by %2$s'), get_topic_start_time(), get_topic_author());
?>
            <?php 
do_action('topicmeta');
?>
        </p>
        <?php 
do_action('under_title');
?>

        <ul id="post-list">
        <?php 
foreach ($posts as $bb_post) {
    $del_class = post_del_class();
    ?>
            <li id="post-<?php 
    post_id();
    ?>
">
                <ul class="post">
                    <?php 
    if (bb_get_option('avatars_show')) {
        ?>
                    <li class="post-avatar"><?php 
        post_author_avatar('48');
        ?>
</li>
                    <?php 
    }