# bbp-core/2.4.2/lib/bbpress/includes/common/widgets.php

Forumax – AI Powered Advanced Community Forum Plugin, version 2.4.2. 1,363 lines.

- Page: https://pluginprobe.com/plugins/bbp-core/2.4.2/code/lib/bbpress/includes/common/widgets.php
- Raw: https://pluginprobe.com/plugins/bbp-core/2.4.2/raw/lib/bbpress/includes/common/widgets.php
- Modified: 2026-04-10T15:32:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/bbp-core/2.4.2/code/lib/bbpress/includes/common/widgets.php#L10-L20`.

```php
<?php

/**
 * bbPress Widgets
 *
 * Contains the forum list, topic list, reply list and login form widgets.
 *
 * @package bbPress
 * @subpackage Widgets
 */

// Exit if accessed directly
defined('ABSPATH') || exit;

/**
 * bbPress Login Widget
 *
 * Adds a widget which displays the login form
 *
 * @since 2.0.0 bbPress (r2827)
 */
class BBP_Login_Widget extends WP_Widget
{

	/**
	 * bbPress Login Widget
	 *
	 * Registers the login widget
	 *
	 * @since 2.0.0 bbPress (r2827)
	 */
	public function __construct()
	{
		$widget_ops = apply_filters('bbp_login_widget_options', array(
			'classname' => 'bbp_widget_login',
			'description' => esc_html__('A simple login form with optional links to sign-up and lost password pages.', 'bbpress'),
			'customize_selective_refresh' => true
		));

		parent::__construct(false, esc_html__('(Forumax) Login Widget', 'bbpress'), $widget_ops);
	}

	/**
	 * Register the widget
	 *
	 * @since 2.0.0 bbPress (r3389)
	 */
	public static function register_widget()
	{
		register_widget('BBP_Login_Widget');
	}

	/**
	 * Displays the output, the login form
	 *
	 * @since 2.0.0 bbPress (r2827)
	 *
	 * @param array $args Arguments
	 * @param array $instance Instance
	 */
	public function widget($args = array(), $instance = array())
	{

		// Get widget settings
		$settings = $this->parse_settings($instance);

		// Typical WordPress filter
		$settings['title'] = apply_filters('widget_title', $settings['title'], $instance, $this->id_base);

		// bbPress filters
		$settings['title'] = apply_filters('bbp_login_widget_title', $settings['title'], $instance, $this->id_base);
		$settings['register'] = apply_filters('bbp_login_widget_register', $settings['register'], $instance, $this->id_base);
		$settings['lostpass'] = apply_filters('bbp_login_widget_lostpass', $settings['lostpass'], $instance, $this->id_base);

		echo $args['before_widget'];

		if (!empty($settings['title'])) {
			echo $args['before_title'] . $settings['title'] . $args['after_title'];
		}

		if (!is_user_logged_in()): ?>

			<form method="post" action="<?php bbp_wp_login_action(array('context' => 'login_post')); ?>" class="bbp-login-form">
				<fieldset class="bbp-form">
					<legend><?php esc_html_e('Log In', 'bbpress'); ?></legend>

					<div class="bbp-username">
						<label for="user_login"><?php esc_html_e('Username', 'bbpress'); ?>: </label>
						<input type="text" name="log" value="<?php bbp_sanitize_val('user_login', 'text'); ?>" size="20"
							maxlength="100" id="user_login" autocomplete="off" />
					</div>

					<div class="bbp-password">
						<label for="user_pass"><?php esc_html_e('Password', 'bbpress'); ?>: </label>
						<input type="password" name="pwd" value="<?php bbp_sanitize_val('user_pass', 'password'); ?>" size="20"
							id="user_pass" autocomplete="off" />
					</div>

					<div class="bbp-remember-me">
						<input type="checkbox" name="rememberme" value="forever" <?php checked(bbp_get_sanitize_val('rememberme', 'checkbox')); ?> id="rememberme" />
						<label for="rememberme"><?php esc_html_e('Keep me signed in', 'bbpress'); ?></label>
					</div>

					<?php do_action('login_form'); ?>

					<div class="bbp-submit-wrapper">

						<button type="submit" name="user-submit" id="user-submit"
							class="button submit user-submit"><?php esc_html_e('Log In', 'bbpress'); ?></button>

						<?php bbp_user_login_fields(); ?>

					</div>

					<?php if (!empty($settings['register']) || !empty($settings['lostpass'])): ?>

						<div class="bbp-login-links">

							<?php if (!empty($settings['register'])): ?>

								<a href="<?php echo esc_url($settings['register']); ?>"
									title="<?php esc_attr_e('Register', 'bbpress'); ?>"
									class="bbp-register-link"><?php esc_html_e('Register', 'bbpress'); ?></a>

							<?php endif; ?>

							<?php if (!empty($settings['lostpass'])): ?>

								<a href="<?php echo esc_url($settings['lostpass']); ?>"
									title="<?php esc_attr_e('Lost Password', 'bbpress'); ?>"
									class="bbp-lostpass-link"><?php esc_html_e('Lost Password', 'bbpress'); ?></a>

							<?php endif; ?>

						</div>

					<?php endif; ?>

				</fieldset>
			</form>

		<?php else: ?>

			<div class="bbp-logged-in">
				<a href="<?php bbp_user_profile_url(bbp_get_current_user_id()); ?>"
					class="submit user-submit"><?php echo get_avatar(bbp_get_current_user_id(), '40'); ?></a>
				<h4><?php bbp_user_profile_link(bbp_get_current_user_id()); ?></h4>

				<?php bbp_logout_link(); ?>
			</div>

		<?php endif;

		echo $args['after_widget'];
	}

	/**
	 * Update the login widget options
	 *
	 * @since 2.0.0 bbPress (r2827)
	 *
	 * @param array $new_instance The new instance options
	 * @param array $old_instance The old instance options
	 */
	public function update($new_instance, $old_instance)
	{
		$instance = $old_instance;
		$instance['title'] = strip_tags($new_instance['title']);
		$instance['register'] = esc_url_raw($new_instance['register']);
		$instance['lostpass'] = esc_url_raw($new_instance['lostpass']);

		return $instance;
	}

	/**
	 * Output the login widget options form
	 *
	 * @since 2.0.0 bbPress (r2827)
	 *
	 * @param $instance Instance
	 */
	public function form($instance = array())
	{

		// Get widget settings
		$settings = $this->parse_settings($instance); ?>

		<p>
			<label for="<?php echo $this->get_field_id('title'); ?>"><?php esc_html_e('Title:', 'bbpress'); ?>
				<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>"
					name="<?php echo $this->get_field_name('title'); ?>" type="text"
					value="<?php echo esc_attr($settings['title']); ?>" /></label>
		</p>

		<p>
			<label for="<?php echo $this->get_field_id('register'); ?>"><?php esc_html_e('Register URI:', 'bbpress'); ?>
				<input class="widefat" id="<?php echo $this->get_field_id('register'); ?>"
					name="<?php echo $this->get_field_name('register'); ?>" type="text"
					value="<?php echo esc_url($settings['register']); ?>" /></label>
		</p>

		<p>
			<label
				for="<?php echo $this->get_field_id('lostpass'); ?>"><?php esc_html_e('Lost Password URI:', 'bbpress'); ?>
				<input class="widefat" id="<?php echo $this->get_field_id('lostpass'); ?>"
					name="<?php echo $this->get_field_name('lostpass'); ?>" type="text"
					value="<?php echo esc_url($settings['lostpass']); ?>" /></label>
		</p>

		<?php
	}

	/**
	 * Merge the widget settings into defaults array.
	 *
	 * @since 2.3.0 bbPress (r4802)
	 *
	 * @param $instance Instance
	 */
	public function parse_settings($instance = array())
	{
		return bbp_parse_args($instance, array(
			'title' => '',
			'register' => '',
			'lostpass' => ''
		), 'login_widget_settings');
	}
}

/**
 * bbPress Views Widget
 *
 * Adds a widget which displays the view list
 *
 * @since 2.0.0 bbPress (r3020)
 */
class BBP_Views_Widget extends WP_Widget
{

	/**
	 * bbPress View Widget
	 *
	 * Registers the view widget
	 *
	 * @since 2.0.0 bbPress (r3020)
	 */
	public function __construct()
	{
		$widget_ops = apply_filters('bbp_views_widget_options', array(
			'classname' => 'widget_display_views',
			'description' => esc_html__('A list of registered optional topic views.', 'bbpress'),
			'customize_selective_refresh' => true
		));

		parent::__construct(false, esc_html__('(Forumax) Topic Views List', 'bbpress'), $widget_ops);
	}

	/**
	 * Register the widget
	 *
	 * @since 2.0.0 bbPress (r3389)
	 */
	public static function register_widget()
	{
		register_widget('BBP_Views_Widget');
	}

	/**
	 * Displays the output, the view list
	 *
	 * @since 2.0.0 bbPress (r3020)
	 *
	 * @param array $args Arguments
	 * @param array $instance Instance
	 */
	public function widget($args = array(), $instance = array())
	{

		// Only output widget contents if views exist
		if (!bbp_get_views()) {
			return;
		}

		// Get widget settings
		$settings = $this->parse_settings($instance);

		// Typical WordPress filter
		$settings['title'] = apply_filters('widget_title', $settings['title'], $instance, $this->id_base);

		// bbPress filter
		$settings['title'] = apply_filters('bbp_view_widget_title', $settings['title'], $instance, $this->id_base);

		// Start an output buffer
		ob_start();

		echo $args['before_widget'];

		if (!empty($settings['title'])) {
			echo $args['before_title'] . $settings['title'] . $args['after_title'];
		} ?>

		<ul class="bbp-views-widget">

			<?php foreach (array_keys(bbp_get_views()) as $view): ?>

				<li><a class="bbp-view-title" href="<?php bbp_view_url($view); ?>"><?php bbp_view_title($view); ?></a></li>

			<?php endforeach; ?>

		</ul>

		<?php echo $args['after_widget'];

		// Output the current buffer
		echo ob_get_clean();
	}

	/**
	 * Update the view widget options
	 *
	 * @since 2.0.0 bbPress (r3020)
	 *
	 * @param array $new_instance The new instance options
	 * @param array $old_instance The old instance options
	 */
	public function update($new_instance = array(), $old_instance = array())
	{
		$instance = $old_instance;
		$instance['title'] = strip_tags($new_instance['title']);

		return $instance;
	}

	/**
	 * Output the view widget options form
	 *
	 * @since 2.0.0 bbPress (r3020)
	 *
	 * @param $instance Instance
	 */
	public function form($instance = array())
	{

		// Get widget settings
		$settings = $this->parse_settings($instance); ?>

		<p>
			<label for="<?php echo $this->get_field_id('title'); ?>"><?php esc_html_e('Title:', 'bbpress'); ?>
				<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>"
					name="<?php echo $this->get_field_name('title'); ?>" type="text"
					value="<?php echo esc_attr($settings['title']); ?>" />
			</label>
		</p>

		<?php
	}

	/**
	 * Merge the widget settings into defaults array.
	 *
	 * @since 2.3.0 bbPress (r4802)
	 *
	 * @param $instance Instance
	 */
	public function parse_settings($instance = array())
	{
		return bbp_parse_args($instance, array(
			'title' => ''
		), 'view_widget_settings');
	}
}

/**
 * bbPress Search Widget
 *
 * Adds a widget which displays the forum search form
 *
 * @since 2.3.0 bbPress (r4579)
 */
class BBP_Search_Widget extends WP_Widget
{

	/**
	 * bbPress Search Widget
	 *
	 * Registers the search widget
	 *
	 * @since 2.3.0 bbPress (r4579)
	 */
	public function __construct()
	{
		$widget_ops = apply_filters('bbp_search_widget_options', array(
			'classname' => 'widget_display_search',
			'description' => esc_html__('The bbPress forum search form.', 'bbpress'),
			'customize_selective_refresh' => true
		));

		parent::__construct(false, esc_html__('(Forumax) Forum Search Form', 'bbpress'), $widget_ops);
	}

	/**
	 * Register the widget
	 *
	 * @since 2.3.0 bbPress (r4579)
	 */
	public static function register_widget()
	{
		register_widget('BBP_Search_Widget');
	}

	/**
	 * Displays the output, the search form
	 *
	 * @since 2.3.0 bbPress (r4579)
	 */
	public function widget($args, $instance)
	{

		// Bail if search is disabled
		if (!bbp_allow_search()) {
			return;
		}

		// Get widget settings
		$settings = $this->parse_settings($instance);

		// Typical WordPress filter
		$settings['title'] = apply_filters('widget_title', $settings['title'], $instance, $this->id_base);

		// bbPress filter
		$settings['title'] = apply_filters('bbp_search_widget_title', $settings['title'], $instance, $this->id_base);

		echo $args['before_widget'];

		if (!empty($settings['title'])) {
			echo $args['before_title'] . $settings['title'] . $args['after_title'];
		}

		bbp_get_template_part('form', 'search');

		echo $args['after_widget'];
	}

	/**
	 * Update the widget options
	 *
	 * @since 2.3.0 bbPress (r4579)
	 *
	 * @param array $new_instance The new instance options
	 * @param array $old_instance The old instance options
	 */
	public function update($new_instance, $old_instance)
	{
		$instance = $old_instance;
		$instance['title'] = strip_tags($new_instance['title']);

		return $instance;
	}

	/**
	 * Output the search widget options form
	 *
	 * @since 2.3.0 bbPress (r4579)
	 *
	 * @param $instance Instance
	 */
	public function form($instance)
	{

		// Get widget settings
		$settings = $this->parse_settings($instance); ?>

		<p>
			<label for="<?php echo $this->get_field_id('title'); ?>"><?php esc_html_e('Title:', 'bbpress'); ?>
				<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>"
					name="<?php echo $this->get_field_name('title'); ?>" type="text"
					value="<?php echo esc_attr($settings['title']); ?>" />
			</label>
		</p>

		<?php
	}

	/**
	 * Merge the widget settings into defaults array.
	 *
	 * @since 2.3.0 bbPress (r4802)
	 *
	 * @param $instance Instance
	 */
	public function parse_settings($instance = array())
	{
		return bbp_parse_args($instance, array(
			'title' => esc_html__('Search Forums', 'bbpress')
		), 'search_widget_settings');
	}
}

/**
 * bbPress Forum Widget
 *
 * Adds a widget which displays the forum list
 *
 * @since 2.0.0 bbPress (r2653)
 */
class BBP_Forums_Widget extends WP_Widget
{

	/**
	 * bbPress Forum Widget
	 *
	 * Registers the forum widget
	 *
	 * @since 2.0.0 bbPress (r2653)
	 */
	public function __construct()
	{
		$widget_ops = apply_filters('bbp_forums_widget_options', array(
			'classname' => 'widget_display_forums',
			'description' => esc_html__('A list of forums with an option to set the parent.', 'bbpress'),
			'customize_selective_refresh' => true
		));

		parent::__construct(false, esc_html__('(Forumax) Forums List', 'bbpress'), $widget_ops);
	}

	/**
	 * Register the widget
	 *
	 * @since 2.0.0 bbPress (r3389)
	 */
	public static function register_widget()
	{
		register_widget('BBP_Forums_Widget');
	}

	/**
	 * Displays the output, the forum list
	 *
	 * @since 2.0.0 bbPress (r2653)
	 *
	 * @param array $args Arguments
	 * @param array $instance Instance
	 */
	public function widget($args, $instance)
	{

		// Get widget settings
		$settings = $this->parse_settings($instance);

		// Typical WordPress filter
		$settings['title'] = apply_filters('widget_title', $settings['title'], $instance, $this->id_base);

		// bbPress filter
		$settings['title'] = apply_filters('bbp_forum_widget_title', $settings['title'], $instance, $this->id_base);

		// Note: private and hidden forums will be excluded via the
		// bbp_pre_get_posts_normalize_forum_visibility action and function.
		$widget_query = new WP_Query(array(

			// What and how
			'post_type' => bbp_get_forum_post_type(),
			'post_status' => bbp_get_public_status_id(),
			'post_parent' => $settings['parent_forum'],
			'posts_per_page' => (int) get_option('_bbp_forums_per_page', 50),

			// Order
			'orderby' => 'menu_order title',
			'order' => 'ASC',

			// Performance
			'ignore_sticky_posts' => true,
			'no_found_rows' => true,
			'update_post_term_cache' => false,
			'update_post_meta_cache' => false
		));

		// Bail if no posts
		if (!$widget_query->have_posts()) {
			return;
		}

		echo $args['before_widget'];

		if (!empty($settings['title'])) {
			echo $args['before_title'] . $settings['title'] . $args['after_title'];
		} ?>

		<ul class="bbp-forums-widget">

			<?php while ($widget_query->have_posts()):
				$widget_query->the_post(); ?>

				<li <?php echo (bbp_get_forum_id() === $widget_query->post->ID ? ' class="bbp-forum-widget-current-forum"' : ''); ?>>
					<a class="bbp-forum-title" href="<?php bbp_forum_permalink($widget_query->post->ID); ?>">
						<?php bbp_forum_title($widget_query->post->ID); ?>
					</a>
				</li>

			<?php endwhile; ?>

		</ul>

		<?php echo $args['after_widget'];

		// Reset the $post global
		wp_reset_postdata();
	}

	/**
	 * Update the forum widget options
	 *
	 * @since 2.0.0 bbPress (r2653)
	 *
	 * @param array $new_instance The new instance options
	 * @param array $old_instance The old instance options
	 */
	public function update($new_instance, $old_instance)
	{
		$instance = $old_instance;
		$instance['title'] = strip_tags($new_instance['title']);
		$instance['parent_forum'] = sanitize_text_field($new_instance['parent_forum']);

		// Force to any
		if (!empty($instance['parent_forum']) && !is_numeric($instance['parent_forum'])) {
			$instance['parent_forum'] = 'any';
		}

		return $instance;
	}

	/**
	 * Output the forum widget options form
	 *
	 * @since 2.0.0 bbPress (r2653)
	 *
	 * @param $instance Instance
	 */
	public function form($instance)
	{

		// Get widget settings
		$settings = $this->parse_settings($instance); ?>

		<p>
			<label for="<?php echo $this->get_field_id('title'); ?>"><?php esc_html_e('Title:', 'bbpress'); ?>
				<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>"
					name="<?php echo $this->get_field_name('title'); ?>" type="text"
					value="<?php echo esc_attr($settings['title']); ?>" />
			</label>
		</p>

		<p>
			<label
				for="<?php echo $this->get_field_id('parent_forum'); ?>"><?php esc_html_e('Parent Forum ID:', 'bbpress'); ?>
				<input class="widefat" id="<?php echo $this->get_field_id('parent_forum'); ?>"
					name="<?php echo $this->get_field_name('parent_forum'); ?>" type="text"
					value="<?php echo esc_attr($settings['parent_forum']); ?>" />
			</label>

			<br />

			<small><?php esc_html_e('"0" to show only root - "any" to show all', 'bbpress'); ?></small>
		</p>

		<?php
	}

	/**
	 * Merge the widget settings into defaults array.
	 *
	 * @since 2.3.0 bbPress (r4802)
	 *
	 * @param $instance Instance
	 */
	public function parse_settings($instance = array())
	{
		return bbp_parse_args($instance, array(
			'title' => esc_html__('Forums', 'bbpress'),
			'parent_forum' => 0
		), 'forum_widget_settings');
	}
}

/**
 * bbPress Topic Widget
 *
 * Adds a widget which displays the topic list
 *
 * @since 2.0.0 bbPress (r2653)
 */
class BBP_Topics_Widget extends WP_Widget
{

	/**
	 * bbPress Topic Widget
	 *
	 * Registers the topic widget
	 *
	 * @since 2.0.0 bbPress (r2653)
	 */
	public function __construct()
	{
		$widget_ops = apply_filters('bbp_topics_widget_options', array(
			'classname' => 'widget_display_topics',
			'description' => esc_html__('A list of recent topics, sorted by: newness, popularity, or recent replies.', 'bbpress'),
			'customize_selective_refresh' => true
		));

		parent::__construct(false, esc_html__('(Forumax) Recent Topics', 'bbpress'), $widget_ops);
	}

	/**
	 * Register the widget
	 *
	 * @since 2.0.0 bbPress (r3389)
	 */
	public static function register_widget()
	{
		register_widget('BBP_Topics_Widget');
	}

	/**
	 * Displays the output, the topic list
	 *
	 * @since 2.0.0 bbPress (r2653)
	 *
	 * @param array $args
	 * @param array $instance
	 */
	public function widget($args = array(), $instance = array())
	{

		// Get widget settings
		$settings = $this->parse_settings($instance);

		// Typical WordPress filter
		$settings['title'] = apply_filters('widget_title', $settings['title'], $instance, $this->id_base);

		// bbPress filter
		$settings['title'] = apply_filters('bbp_topic_widget_title', $settings['title'], $instance, $this->id_base);

		// How do we want to order our results?
		switch ($settings['order_by']) {

			// Order by most recent replies
			case 'freshness':
				$topics_query = array(

					// What and how
					'post_type' => bbp_get_topic_post_type(),
					'post_status' => bbp_get_public_topic_statuses(),
					'post_parent' => $settings['parent_forum'],
					'posts_per_page' => (int) $settings['max_shown'],
					'meta_query' => array(
						array(
							'key' => '_bbp_last_active_time',
							'type' => 'DATETIME'
						)
					),

					// Ordering
					'orderby' => 'meta_value',
					'order' => 'DESC',

					// Performance
					'ignore_sticky_posts' => true,
					'no_found_rows' => true,
					'update_post_term_cache' => false,
					'update_post_meta_cache' => false
				);
				break;

			// Order by total number of replies
			case 'popular':
				$topics_query = array(

					// What and how
					'post_type' => bbp_get_topic_post_type(),
					'post_status' => bbp_get_public_topic_statuses(),
					'post_parent' => $settings['parent_forum'],
					'posts_per_page' => (int) $settings['max_shown'],
					'meta_query' => array(
						array(
							'key' => '_bbp_reply_count',
							'type' => 'NUMERIC'
						)
					),

					// Ordering
					'orderby' => 'meta_value_num',
					'order' => 'DESC',

					// Performance
					'ignore_sticky_posts' => true,
					'no_found_rows' => true,
					'update_post_term_cache' => false,
					'update_post_meta_cache' => false
				);
				break;

			// Order by which topic was created most recently
			case 'newness':
			default:
				$topics_query = array(

					// What and how
					'post_type' => bbp_get_topic_post_type(),
					'post_status' => bbp_get_public_topic_statuses(),
					'post_parent' => $settings['parent_forum'],
					'posts_per_page' => (int) $settings['max_shown'],

					// Ordering
					'orderby' => 'date',
					'order' => 'DESC',

					// Performance
					'ignore_sticky_posts' => true,
					'no_found_rows' => true,
					'update_post_term_cache' => false,
					'update_post_meta_cache' => false
				);
				break;
		}

		// Note: private and hidden forums will be excluded via the
		// bbp_pre_get_posts_normalize_forum_visibility action and function.
		$widget_query = new WP_Query($topics_query);

		// Bail if no topics are found
		if (!$widget_query->have_posts()) {
			return;
		}

		// Start an output buffer
		ob_start();

		echo $args['before_widget'];

		if (!empty($settings['title'])) {
			echo $args['before_title'] . $settings['title'] . $args['after_title'];
		} ?>

		<ul class="frmx-list-unstyled bbp-topics-widget <?php echo esc_attr($settings['order_by']); ?>">

			<?php while ($widget_query->have_posts()):

				$widget_query->the_post();
				$topic_id = bbp_get_topic_id($widget_query->post->ID);
				$author_link = '';

				// Maybe get the topic author
				if (!empty($settings['show_user'])):
					$author_link = bbp_get_topic_author_link(array('post_id' => $topic_id, 'type' => 'both', 'size' => 14));
				endif; ?>

				<li>
					<a class="bbp-forum-title"
						href="<?php bbp_topic_permalink($topic_id); ?>"><?php bbp_topic_title($topic_id); ?></a>

					<?php if (!empty($author_link)): ?>

						<?php printf(esc_html_x('by %1$s', 'widgets', 'bbpress'), '<span class="topic-author">' . $author_link . '</span>'); ?>

					<?php endif; ?>

					<?php if (!empty($settings['show_date'])): ?>

						<div><?php bbp_topic_last_active_time($topic_id); ?></div>

					<?php endif; ?>

				</li>

			<?php endwhile; ?>

		</ul>

		<?php echo $args['after_widget'];

		// Reset the $post global
		wp_reset_postdata();

		// Output the current buffer
		echo ob_get_clean();
	}

	/**
	 * Update the topic widget options
	 *
	 * @since 2.0.0 bbPress (r2653)
	 *
	 * @param array $new_instance The new instance options
	 * @param array $old_instance The old instance options
	 */
	public function update($new_instance = array(), $old_instance = array())
	{
		$instance = $old_instance;
		$instance['title'] = strip_tags($new_instance['title']);
		$instance['order_by'] = strip_tags($new_instance['order_by']);
		$instance['parent_forum'] = sanitize_text_field($new_instance['parent_forum']);
		$instance['max_shown'] = (int) $new_instance['max_shown'];

		// Date
		$instance['show_date'] = isset($new_instance['show_date'])
			? (bool) $new_instance['show_date']
			: false;

		// Author
		$instance['show_user'] = isset($new_instance['show_user'])
			? (bool) $new_instance['show_user']
			: false;

		// Force to any
		if (!empty($instance['parent_forum']) && !is_numeric($instance['parent_forum'])) {
			$instance['parent_forum'] = 'any';
		}

		return $instance;
	}

	/**
	 * Output the topic widget options form
	 *
	 * @since 2.0.0 bbPress (r2653)
	 *
	 * @param $instance Instance
	 */
	public function form($instance = array())
	{

		// Get widget settings
		$settings = $this->parse_settings($instance); ?>

		<p><label
				for="<?php echo $this->get_field_id('title'); ?>"><?php esc_html_e('Title:', 'bbpress'); ?>
				<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>"
					name="<?php echo $this->get_field_name('title'); ?>" type="text"
					value="<?php echo esc_attr($settings['title']); ?>" /></label></p>
		<p><label
				for="<?php echo $this->get_field_id('max_shown'); ?>"><?php esc_html_e('Maximum topics to show:', 'bbpress'); ?>
				<input class="widefat" id="<?php echo $this->get_field_id('max_shown'); ?>"
					name="<?php echo $this->get_field_name('max_shown'); ?>" type="text"
					value="<?php echo esc_attr($settings['max_shown']); ?>" /></label></p>

		<p>
			<label
				for="<?php echo $this->get_field_id('parent_forum'); ?>"><?php esc_html_e('Parent Forum ID:', 'bbpress'); ?>
				<input class="widefat" id="<?php echo $this->get_field_id('parent_forum'); ?>"
					name="<?php echo $this->get_field_name('parent_forum'); ?>" type="text"
					value="<?php echo esc_attr($settings['parent_forum']); ?>" />
			</label>

			<br />

			<small><?php esc_html_e('"0" to show only root - "any" to show all', 'bbpress'); ?></small>
		</p>

		<p><label
				for="<?php echo $this->get_field_id('show_date'); ?>"><?php esc_html_e('Show post date:', 'bbpress'); ?>
				<input type="checkbox" id="<?php echo $this->get_field_id('show_date'); ?>"
					name="<?php echo $this->get_field_name('show_date'); ?>" <?php checked(true, $settings['show_date']); ?>
					value="1" /></label></p>
		<p><label
				for="<?php echo $this->get_field_id('show_user'); ?>"><?php esc_html_e('Show topic author:', 'bbpress'); ?>
				<input type="checkbox" id="<?php echo $this->get_field_id('show_user'); ?>"
					name="<?php echo $this->get_field_name('show_user'); ?>" <?php checked(true, $settings['show_user']); ?>
					value="1" /></label></p>

		<p>
			<label for="<?php echo $this->get_field_id('order_by'); ?>"><?php esc_html_e('Order By:', 'bbpress'); ?></label>
			<select name="<?php echo $this->get_field_name('order_by'); ?>"
				id="<?php echo $this->get_field_id('order_by'); ?>">
				<option <?php selected($settings['order_by'], 'newness'); ?> value="newness">
					<?php esc_html_e('Newest Topics', 'bbpress'); ?></option>
				<option <?php selected($settings['order_by'], 'popular'); ?> value="popular">
					<?php esc_html_e('Popular Topics', 'bbpress'); ?></option>
				<option <?php selected($settings['order_by'], 'freshness'); ?> value="freshness">
					<?php esc_html_e('Topics With Recent Replies', 'bbpress'); ?></option>
			</select>
		</p>

		<?php
	}

	/**
	 * Merge the widget settings into defaults array.
	 *
	 * @since 2.3.0 bbPress (r4802)
	 *
	 * @param $instance Instance
	 */
	public function parse_settings($instance = array())
	{
		return bbp_parse_args($instance, array(
			'title' => esc_html__('Recent Topics', 'bbpress'),
			'max_shown' => 5,
			'show_date' => false,
			'show_user' => false,
			'parent_forum' => 'any',
			'order_by' => false
		), 'topic_widget_settings');
	}
}

/**
 * bbPress Statistics Widget
 *
 * Adds a widget which displays the forum statistics
 *
 * @since 2.3.0 bbPress (r4509)
 */
class BBP_Stats_Widget extends WP_Widget
{

	/**
	 * bbPress Statistics Widget
	 *
	 * Registers the statistics widget
	 *
	 * @since 2.3.0 bbPress (r4509)
	 */
	public function __construct()
	{
		$widget_ops = apply_filters('bbp_stats_widget_options', array(
			'classname' => 'widget_display_stats',
			'description' => esc_html__('Some statistics from your forum.', 'bbpress'),
			'customize_selective_refresh' => true
		));

		parent::__construct(false, esc_html__('(Forumax) Statistics', 'bbpress'), $widget_ops);
	}

	/**
	 * Register the widget
	 *
	 * @since 2.3.0 bbPress (r4509)
	 */
	public static function register_widget()
	{
		register_widget('BBP_Stats_Widget');
	}

	/**
	 * Displays the output, the statistics
	 *
	 * @since 2.3.0 bbPress (r4509)
	 *
	 * @param array $args     Arguments
	 * @param array $instance Instance
	 */
	public function widget($args = array(), $instance = array())
	{

		// Get widget settings
		$settings = $this->parse_settings($instance);

		// Typical WordPress filter
		$settings['title'] = apply_filters('widget_title', $settings['title'], $instance, $this->id_base);

		// bbPress widget title filter
		$settings['title'] = apply_filters('bbp_stats_widget_title', $settings['title'], $instance, $this->id_base);

		echo $args['before_widget'];

		if (!empty($settings['title'])) {
			echo $args['before_title'] . $settings['title'] . $args['after_title'];
		}

		bbp_get_template_part('content', 'statistics');

		echo $args['after_widget'];
	}

	/**
	 * Update the statistics widget options
	 *
	 * @since 2.3.0 bbPress (r4509)
	 *
	 * @param array $new_instance The new instance options
	 * @param array $old_instance The old instance options
	 *
	 * @return array
	 */
	public function update($new_instance, $old_instance)
	{
		$instance = $old_instance;
		$instance['title'] = strip_tags($new_instance['title']);

		return $instance;
	}

	/**
	 * Output the statistics widget options form
	 *
	 * @since 2.3.0 bbPress (r4509)
	 *
	 * @param $instance
	 *
	 * @return string|void
	 */
	public function form($instance)
	{

		// Get widget settings
		$settings = $this->parse_settings($instance); ?>

		<p>
			<label for="<?php echo $this->get_field_id('title'); ?>"><?php esc_html_e('Title:', 'bbpress'); ?>
				<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>"
					name="<?php echo $this->get_field_name('title'); ?>" type="text"
					value="<?php echo esc_attr($settings['title']); ?>" />
			</label>
		</p>

		<?php
	}

	/**
	 * Merge the widget settings into defaults array.
	 *
	 * @since 2.3.0 bbPress (r4802)
	 *
	 * @param $instance Instance
	 */
	public function parse_settings($instance = array())
	{
		return bbp_parse_args($instance, array(
			'title' => esc_html__('Forum Statistics', 'bbpress')
		), 'stats_widget_settings');
	}
}

/**
 * bbPress Replies Widget
 *
 * Adds a widget which displays the replies list
 *
 * @since 2.0.0 bbPress (r2653)
 */
class BBP_Replies_Widget extends WP_Widget
{

	/**
	 * bbPress Replies Widget
	 *
	 * Registers the replies widget
	 *
	 * @since 2.0.0 bbPress (r2653)
	 */
	public function __construct()
	{
		$widget_ops = apply_filters('bbp_replies_widget_options', array(
			'classname' => 'widget_display_replies',
			'description' => esc_html__('A list of the most recent replies.', 'bbpress'),
			'customize_selective_refresh' => true
		));

		parent::__construct(false, esc_html__('(Forumax) Recent Replies', 'bbpress'), $widget_ops);
	}

	/**
	 * Register the widget
	 *
	 * @since 2.0.0 bbPress (r3389)
	 */
	public static function register_widget()
	{
		register_widget('BBP_Replies_Widget');
	}

	/**
	 * Displays the output, the replies list
	 *
	 * @since 2.0.0 bbPress (r2653)
	 *
	 * @param array $args
	 * @param array $instance
	 */
	public function widget($args, $instance)
	{

		// Get widget settings
		$settings = $this->parse_settings($instance);

		// Typical WordPress filter
		$settings['title'] = apply_filters('widget_title', $settings['title'], $instance, $this->id_base);

		// bbPress filter
		$settings['title'] = apply_filters('bbp_replies_widget_title', $settings['title'], $instance, $this->id_base);

		// Note: private and hidden forums will be excluded via the
		// bbp_pre_get_posts_normalize_forum_visibility action and function.
		$widget_query = new WP_Query(array(

			// What and when
			'post_type' => bbp_get_reply_post_type(),
			'post_status' => bbp_get_public_reply_statuses(),
			'posts_per_page' => (int) $settings['max_shown'],

			// Performance
			'ignore_sticky_posts' => true,
			'no_found_rows' => true,
			'update_post_term_cache' => false,
			'update_post_meta_cache' => false
		));

		// Bail if no replies
		if (!$widget_query->have_posts()) {
			return;
		}

		// Start an output buffer
		ob_start();

		echo $args['before_widget'];

		if (!empty($settings['title'])) {
			echo $args['before_title'] . $settings['title'] . $args['after_title'];
		} ?>

		<ul class="bbp-replies-widget frmx-list-unstyled">

			<?php while ($widget_query->have_posts()):
				$widget_query->the_post(); ?>

				<li>

					<?php

					// Verify the reply ID
					$reply_id = bbp_get_reply_id($widget_query->post->ID);
					$reply_link = '<a class="bbp-reply-topic-title" href="' . esc_url(bbp_get_reply_url($reply_id)) . '" title="' . esc_attr(bbp_get_reply_excerpt($reply_id, 50)) . '">' . esc_html(bbp_get_reply_topic_title($reply_id)) . '</a>';
					$time = get_the_time('U', $reply_id);
					$show_date = '<time datetime="' . gmdate('Y-m-d H:i:s', $time) . '">' . esc_html(bbp_get_time_since($time)) . '</time>';

					// Only query user if showing them
					if (!empty($settings['show_user'])):
						$author_link = bbp_get_reply_author_link(array('post_id' => $reply_id, 'type' => 'both', 'size' => 14));
					else:
						$author_link = false;
					endif;

					// Reply author, link, and timestamp
					if (!empty($settings['show_date']) && !empty($author_link)):

						// translators: 1: reply author, 2: reply link, 3: reply timestamp
						printf(esc_html_x('%1$s on %2$s %3$s', 'widgets', 'bbpress'), $author_link, $reply_link, $show_date);

						// Reply link and timestamp
					elseif (!empty($settings['show_date'])):
						echo $reply_link . ' ' . $show_date;

						// Reply author and title
					elseif (!empty($author_link)):

						// translators: 1: reply author, 2: reply link
						printf(esc_html_x('%1$s on %2$s', 'widgets', 'bbpress'), $author_link, $reply_link);

						// Only the reply title
					else:
						echo $reply_link;
					endif;

					?>

				</li>

			<?php endwhile; ?>

		</ul>

		<?php echo $args['after_widget'];

		// Reset the $post global
		wp_reset_postdata();

		// Output the current buffer
		echo ob_get_clean();
	}

	/**
	 * Update the reply widget options
	 *
	 * @since 2.0.0 bbPress (r2653)
	 *
	 * @param array $new_instance The new instance options
	 * @param array $old_instance The old instance options
	 */
	public function update($new_instance = array(), $old_instance = array())
	{
		$instance = $old_instance;
		$instance['title'] = strip_tags($new_instance['title']);
		$instance['max_shown'] = (int) $new_instance['max_shown'];

		// Date
		$instance['show_date'] = isset($new_instance['show_date'])
			? (bool) $new_instance['show_date']
			: false;

		// Author
		$instance['show_user'] = isset($new_instance['show_user'])
			? (bool) $new_instance['show_user']
			: false;

		return $instance;
	}

	/**
	 * Output the reply widget options form
	 *
	 * @since 2.0.0 bbPress (r2653)
	 *
	 * @param $instance Instance
	 */
	public function form($instance = array())
	{

		// Get widget settings
		$settings = $this->parse_settings($instance); ?>

		<p><label
				for="<?php echo $this->get_field_id('title'); ?>"><?php esc_html_e('Title:', 'bbpress'); ?>
				<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>"
					name="<?php echo $this->get_field_name('title'); ?>" type="text"
					value="<?php echo esc_attr($settings['title']); ?>" /></label></p>
		<p><label
				for="<?php echo $this->get_field_id('max_shown'); ?>"><?php esc_html_e('Maximum replies to show:', 'bbpress'); ?>
				<input class="widefat" id="<?php echo $this->get_field_id('max_shown'); ?>"
					name="<?php echo $this->get_field_name('max_shown'); ?>" type="text"
					value="<?php echo esc_attr($settings['max_shown']); ?>" /></label></p>
		<p><label
				for="<?php echo $this->get_field_id('show_date'); ?>"><?php esc_html_e('Show post date:', 'bbpress'); ?>
				<input type="checkbox" id="<?php echo $this->get_field_id('show_date'); ?>"
					name="<?php echo $this->get_field_name('show_date'); ?>" <?php checked(true, $settings['show_date']); ?>
					value="1" /></label></p>
		<p><label
				for="<?php echo $this->get_field_id('show_user'); ?>"><?php esc_html_e('Show reply author:', 'bbpress'); ?>
				<input type="checkbox" id="<?php echo $this->get_field_id('show_user'); ?>"
					name="<?php echo $this->get_field_name('show_user'); ?>" <?php checked(true, $settings['show_user']); ?>
					value="1" /></label></p>

		<?php
	}

	/**
	 * Merge the widget settings into defaults array.
	 *
	 * @since 2.3.0 bbPress (r4802)
	 *
	 * @param $instance Instance
	 */
	public function parse_settings($instance = array())
	{
		return bbp_parse_args($instance, array(
			'title' => esc_html__('Recent Replies', 'bbpress'),
			'max_shown' => 5,
			'show_date' => false,
			'show_user' => false
		), 'replies_widget_settings');
	}
}

```
