Ticket #1232: stats.php.diff
| File stats.php.diff, 1.6 KB (added by GautamGupta, 2 years ago) |
|---|
-
stats.php
1 1 <?php bb_get_header(); ?> 2 2 3 <div class="bbcrumb"><a href="<?php bb_uri(); ?>"><?php bb_option( 'name'); ?></a> » <?php _e('Statistics'); ?></div>3 <div class="bbcrumb"><a href="<?php bb_uri(); ?>"><?php bb_option( 'name' ); ?></a> » <?php _e( 'Statistics' ); ?></div> 4 4 5 <dl role="main" >6 <dt><?php _e( 'Registered Users'); ?></dt>7 <dd><strong><?php total_users(); ?></strong></dd>8 <dt><?php _e( 'Posts'); ?></dt>5 <dl role="main" class="left"> 6 <dt><?php _e( 'Registered Users' ); ?></dt> 7 <dd><strong><?php bb_total_users(); ?></strong></dd> 8 <dt><?php _e( 'Posts' ); ?></dt> 9 9 <dd><strong><?php total_posts(); ?></strong></dd> 10 <?php do_action( 'bb_stats_left' ); ?> 10 11 </dl> 11 12 12 <?php if ($popular) : ?> 13 <h3><?php _e('Most Popular Topics'); ?></h3> 14 <ol> 15 <?php foreach ($popular as $topic) : ?> 16 <li><?php bb_topic_labels(); ?> <a href="<?php topic_link(); ?>"><?php topic_title(); ?></a> — <?php topic_posts(); ?> posts</li> 13 <div class="right"> 14 <?php if ( $popular ) : ?> 15 <h3><?php _e( 'Most Popular Topics' ); ?></h3> 16 <ol> 17 <?php foreach ( $popular as $topic ) : ?> 18 <li><?php bb_topic_labels(); ?> <a href="<?php topic_link(); ?>"><?php topic_title(); ?></a> — <?php printf( _n( '%s post', '%s posts', get_topic_posts() ), bb_number_format_i18n( get_topic_posts() ) ); ?></li> 17 19 <?php endforeach; ?> 20 </ol> 21 <?php endif; ?> 18 22 19 <?php endif; ?> 20 </ol> 23 <?php do_action( 'bb_stats_right' ); ?> 24 </div> 25 21 26 <?php bb_get_footer(); ?>