web/wp-content/plugins/bbpress/templates/default/bbpress/user-favorites.php
changeset 196 5e8dcbe22c24
equal deleted inserted replaced
195:c7c0fbc09788 196:5e8dcbe22c24
       
     1 <?php
       
     2 
       
     3 /**
       
     4  * User Favorites
       
     5  *
       
     6  * @package bbPress
       
     7  * @subpackage Theme
       
     8  */
       
     9 
       
    10 ?>
       
    11 
       
    12 	<?php do_action( 'bbp_template_before_user_favorites' ); ?>
       
    13 
       
    14 	<div id="bbp-user-favorites" class="bbp-user-favorites">
       
    15 		<h2 class="entry-title"><?php _e( 'Favorite Forum Topics', 'bbpress' ); ?></h2>
       
    16 		<div class="bbp-user-section">
       
    17 
       
    18 			<?php if ( bbp_get_user_favorites() ) : ?>
       
    19 
       
    20 				<?php bbp_get_template_part( 'pagination', 'topics' ); ?>
       
    21 
       
    22 				<?php bbp_get_template_part( 'loop',       'topics' ); ?>
       
    23 
       
    24 				<?php bbp_get_template_part( 'pagination', 'topics' ); ?>
       
    25 
       
    26 			<?php else : ?>
       
    27 
       
    28 				<p><?php bbp_is_user_home() ? _e( 'You currently have no favorite topics.', 'bbpress' ) : _e( 'This user has no favorite topics.', 'bbpress' ); ?></p>
       
    29 
       
    30 			<?php endif; ?>
       
    31 
       
    32 		</div>
       
    33 	</div><!-- #bbp-user-favorites -->
       
    34 
       
    35 	<?php do_action( 'bbp_template_after_user_favorites' ); ?>