| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Statistics Content Part |
| 5 |
* |
| 6 |
* @package bbPress |
| 7 |
* @subpackage Theme |
| 8 |
*/ |
| 9 |
|
| 10 |
// Exit if accessed directly |
| 11 |
defined( 'ABSPATH' ) || exit; |
| 12 |
|
| 13 |
// Get the statistics |
| 14 |
$stats = bbp_get_statistics(); ?> |
| 15 |
|
| 16 |
<dl role="main"> |
| 17 |
|
| 18 |
<?php do_action( 'bbp_before_statistics' ); ?> |
| 19 |
|
| 20 |
<dt><?php esc_html_e( 'Registered Users', 'forumax' ); ?></dt> |
| 21 |
<dd> |
| 22 |
<strong><?php echo esc_html( $stats['user_count'] ); ?></strong> |
| 23 |
</dd> |
| 24 |
|
| 25 |
<dt><?php esc_html_e( 'Forums', 'forumax' ); ?></dt> |
| 26 |
<dd> |
| 27 |
<strong><?php echo esc_html( $stats['forum_count'] ); ?></strong> |
| 28 |
</dd> |
| 29 |
|
| 30 |
<dt><?php esc_html_e( 'Topics', 'forumax' ); ?></dt> |
| 31 |
<dd> |
| 32 |
<strong><?php echo esc_html( $stats['topic_count'] ); ?></strong> |
| 33 |
</dd> |
| 34 |
|
| 35 |
<?php if ( !empty($stats['reply_count']) ) : ?> |
| 36 |
<dt><?php esc_html_e( 'Replies', 'forumax' ); ?></dt> |
| 37 |
<dd> |
| 38 |
<strong><?php echo esc_html( $stats['reply_count'] ); ?></strong> |
| 39 |
</dd> |
| 40 |
<?php endif; ?> |
| 41 |
|
| 42 |
<dt><?php esc_html_e( 'Topic Tags', 'forumax' ); ?></dt> |
| 43 |
<dd> |
| 44 |
<strong><?php echo esc_html( $stats['topic_tag_count'] ); ?></strong> |
| 45 |
</dd> |
| 46 |
|
| 47 |
<?php if ( ! empty( $stats['empty_topic_tag_count'] ) ) : ?> |
| 48 |
|
| 49 |
<dt><?php esc_html_e( 'Empty Topic Tags', 'forumax' ); ?></dt> |
| 50 |
<dd> |
| 51 |
<strong><?php echo esc_html( $stats['empty_topic_tag_count'] ); ?></strong> |
| 52 |
</dd> |
| 53 |
|
| 54 |
<?php endif; ?> |
| 55 |
|
| 56 |
<?php if ( ! empty( $stats['topic_count_hidden'] ) ) : ?> |
| 57 |
|
| 58 |
<dt><?php esc_html_e( 'Hidden Topics', 'forumax' ); ?></dt> |
| 59 |
<dd> |
| 60 |
<strong> |
| 61 |
<abbr title="<?php echo esc_attr( $stats['hidden_topic_title'] ); ?>"><?php echo esc_html( $stats['topic_count_hidden'] ); ?></abbr> |
| 62 |
</strong> |
| 63 |
</dd> |
| 64 |
|
| 65 |
<?php endif; ?> |
| 66 |
|
| 67 |
<?php if ( ! empty( $stats['reply_count_hidden'] ) ) : ?> |
| 68 |
|
| 69 |
<dt><?php esc_html_e( 'Hidden Replies', 'forumax' ); ?></dt> |
| 70 |
<dd> |
| 71 |
<strong> |
| 72 |
<abbr title="<?php echo esc_attr( $stats['hidden_reply_title'] ); ?>"><?php echo esc_html( $stats['reply_count_hidden'] ); ?></abbr> |
| 73 |
</strong> |
| 74 |
</dd> |
| 75 |
|
| 76 |
<?php endif; ?> |
| 77 |
|
| 78 |
<?php do_action( 'bbp_after_statistics' ); ?> |
| 79 |
|
| 80 |
</dl> |
| 81 |
|
| 82 |
<?php unset( $stats ); |