Skip to:
Content

bbPress.org


Ignore:
Timestamp:
04/19/2015 04:45:02 PM (11 years ago)
Author:
johnjamesjacoby
Message:

Templates: Micro-optimizations:

  • Remove trailing ?> tag in some template parts
  • Remove preceding ?> <?php in some template parts, after phpdoc header
  • Remove whitespace where superfluous
  • Reduce number of indentations in some template parts
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/templates/default/bbpress/user-favorites.php

    r5688 r5689  
    88 */
    99
    10 ?>
     10do_action( 'bbp_template_before_user_favorites' ); ?>
    1111
    12         <?php do_action( 'bbp_template_before_user_favorites' ); ?>
     12<div id="bbp-user-favorites" class="bbp-user-favorites">
     13        <h2 class="entry-title"><?php esc_html_e( 'Favorite Forum Topics', 'bbpress' ); ?></h2>
     14        <div class="bbp-user-section">
    1315
    14         <div id="bbp-user-favorites" class="bbp-user-favorites">
    15                 <h2 class="entry-title"><?php esc_html_e( 'Favorite Forum Topics', 'bbpress' ); ?></h2>
    16                 <div class="bbp-user-section">
     16                <?php if ( bbp_get_user_favorites() ) : ?>
    1717
    18                         <?php if ( bbp_get_user_favorites() ) : ?>
     18                        <?php bbp_get_template_part( 'pagination', 'topics' ); ?>
    1919
    20                                 <?php bbp_get_template_part( 'pagination', 'topics' ); ?>
     20                        <?php bbp_get_template_part( 'loop',      'topics' ); ?>
    2121
    22                                 <?php bbp_get_template_part( 'loop',      'topics' ); ?>
     22                        <?php bbp_get_template_part( 'pagination', 'topics' ); ?>
    2323
    24                                 <?php bbp_get_template_part( 'pagination', 'topics' ); ?>
     24                <?php else : ?>
    2525
    26                         <?php else : ?>
     26                        <p><?php bbp_is_user_home()
     27                                ? esc_html_e( 'You currently have no favorite topics.', 'bbpress' )
     28                                : esc_html_e( 'This user has no favorite topics.',      'bbpress' );
     29                        ?></p>
    2730
    28                                 <p><?php bbp_is_user_home()
    29                                         ? esc_html_e( 'You currently have no favorite topics.', 'bbpress' )
    30                                         : esc_html_e( 'This user has no favorite topics.',      'bbpress' );
    31                                 ?></p>
     31                <?php endif; ?>
    3232
    33                         <?php endif; ?>
     33        </div>
     34</div><!-- #bbp-user-favorites -->
    3435
    35                 </div>
    36         </div><!-- #bbp-user-favorites -->
    37 
    38         <?php do_action( 'bbp_template_after_user_favorites' ); ?>
     36<?php do_action( 'bbp_template_after_user_favorites' );
Note: See TracChangeset for help on using the changeset viewer.