PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / 2.2.0
Forumax – AI Powered Advanced Community Forum Plugin v2.2.0
2.4.4 2.4.3 2.4.2 2.4.1 2.4.0 trunk 1.0.8 1.1.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 2.0.0 2.1.0 All 29 releases
bbp-core / templates / content-statistics.php

content-statistics.php in Forumax – AI Powered Advanced Community Forum Plugin 2.2.0, at templates/content-statistics.php

82 lines 2.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 );