wenpai.org/wp-content/plugins/bbp-style-pack/templates/modtools/loop-pending-topic.php
2024-06-21 23:57:39 +08:00

104 lines
3.1 KiB
PHP

<?php
/**
* Search Loop - Single Topic
*
* @package bbPress
* @subpackage Theme
*/
// Exit if accessed directly
defined( 'ABSPATH' ) || exit;
?>
<div class="bbp-topic-header">
<div class="bbp-meta">
<span class="bbp-topic-post-date"><?php bbp_topic_post_date( bbp_get_topic_id() ); ?></span>
<a href="<?php bbp_topic_permalink(); ?>" class="bbp-topic-permalink">#<?php bbp_topic_id(); ?></a>
<?php do_action( 'bbp_theme_before_topic_admin_links' ); ?>
<?php
// Parse arguments against default values
$r = bbp_parse_args( $args, array(
'id' => bbp_get_topic_id(),
'before' => '<span class="bbp-admin-links">',
'after' => '</span>',
'sep' => ' | ',
'links' => array()
), 'bsp_modtools_get_topic_admin_links' );
$args['links'] = array(
'edit' => bbp_get_topic_edit_link ( $r ),
'close' => bbp_get_topic_close_link ( $r ),
'stick' => bbp_get_topic_stick_link ( $r ),
'trash' => bbp_get_topic_trash_link ( $r ),
'spam' => bbp_get_topic_spam_link ( $r ),
'approve' => bbp_get_topic_approve_link( $r ),
);
?>
<?php bbp_topic_admin_links($args); ?>
<?php do_action( 'bbp_theme_after_topic_admin_links' ); ?>
</div><!-- .bbp-meta -->
<div class="bbp-topic-title">
<?php do_action( 'bbp_theme_before_topic_title' ); ?>
<h3><?php esc_html_e( 'Topic:', 'bbpress' ); ?>
<a href="<?php bbp_topic_permalink(); ?>"><?php bbp_topic_title(); ?></a></h3>
<div class="bbp-topic-title-meta">
<?php if ( function_exists( 'bbp_is_forum_group_forum' ) && bbp_is_forum_group_forum( bbp_get_topic_forum_id() ) ) : ?>
<?php esc_html_e( 'in group forum ', 'bbpress' ); ?>
<?php else : ?>
<?php esc_html_e( 'in forum ', 'bbpress' ); ?>
<?php endif; ?>
<a href="<?php bbp_forum_permalink( bbp_get_topic_forum_id() ); ?>"><?php bbp_forum_title( bbp_get_topic_forum_id() ); ?></a>
</div><!-- .bbp-topic-title-meta -->
<?php do_action( 'bbp_theme_after_topic_title' ); ?>
</div><!-- .bbp-topic-title -->
</div><!-- .bbp-topic-header -->
<div id="post-<?php bbp_topic_id(); ?>" <?php bbp_topic_class(); ?>>
<div class="bbp-topic-author">
<?php do_action( 'bbp_theme_before_topic_author_details' ); ?>
<?php bbp_topic_author_link( array( 'show_role' => true ) ); ?>
<?php if ( bbp_is_user_keymaster() ) : ?>
<?php do_action( 'bbp_theme_before_topic_author_admin_details' ); ?>
<div class="bbp-reply-ip"><?php bbp_author_ip( bbp_get_topic_id() ); ?></div>
<?php do_action( 'bbp_theme_after_topic_author_admin_details' ); ?>
<?php endif; ?>
<?php do_action( 'bbp_theme_after_topic_author_details' ); ?>
</div><!-- .bbp-topic-author -->
<div class="bbp-topic-content">
<?php do_action( 'bbp_theme_before_topic_content' ); ?>
<?php bbp_topic_content(); ?>
<?php do_action( 'bbp_theme_after_topic_content' ); ?>
</div><!-- .bbp-topic-content -->
</div><!-- #post-<?php bbp_topic_id(); ?> -->