HEX
Server: LiteSpeed
System: Linux node612.namehero.net 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User: dfwparty (1186)
PHP: 8.3.31
Disabled: NONE
Upload Files
File: /home/dfwparty/members.bizcoach.biz/wp-content/plugins/buddyboss-platform/bp-forums/common/ajax.php
<?php

/**
 * Forums Common AJAX Functions
 *
 * Common AJAX functions are ones that are used to setup and/or use during
 * Forums specific, theme-side  AJAX requests.
 *
 * @package BuddyBoss\Ajax
 */

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

/**
 * Output the URL to use for theme-side Forums AJAX requests
 *
 * @since bbPress (r4543)
 *
 * @uses bbp_get_ajax_url() To get the URL to use for AJAX requests
 */
function bbp_ajax_url() {
	echo esc_url( bbp_get_ajax_url() );
}
	/**
	 * Return the URL to use for theme-side Forums AJAX requests
	 *
	 * @since bbPress (r4543)
	 *
	 * @global WP $wp
	 * @return string
	 */
function bbp_get_ajax_url() {
	global $wp;

	$ssl      = bbp_get_url_scheme();
	$url      = trailingslashit( $wp->request );
	$base_url = home_url( $url, $ssl );
	$ajaxurl  = add_query_arg( array( 'bbp-ajax' => 'true' ), $base_url );

	return apply_filters( 'bbp_get_ajax_url', $ajaxurl );
}

/**
 * Is this a Forums AJAX request?
 *
 * @since bbPress (r4543)
 *
 * @return bool Looking for bbp-ajax
 */
function bbp_is_ajax() {
	return (bool) ( ( isset( $_GET['bbp-ajax'] ) || isset( $_POST['bbp-ajax'] ) ) && ! empty( $_REQUEST['action'] ) );
}

/**
 * Hooked to the 'bbp_template_redirect' action, this is Forums' custom
 * theme-side ajax handler.
 *
 * @since bbPress (r4543)
 *
 * @return If not a Forums ajax request
 */
function bbp_do_ajax() {

	// Bail if not an ajax request
	if ( ! bbp_is_ajax() ) {
		return;
	}

	// Set WordPress core ajax constant
	define( 'DOING_AJAX', true );

	// Set the header content type
	@header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) );

	// Disable content sniffing in browsers that support it
	send_nosniff_header();

	// Perform custom Forums ajax
	do_action( 'bbp_ajax_' . $_REQUEST['action'] );

	// All done
	die( '0' );
}

/**
 * Helper method to return JSON response for the ajax calls
 *
 * @since bbPress (r4542)
 *
 * @param bool   $success
 * @param string $content
 * @param array  $extras
 */
function bbp_ajax_response( $success = false, $content = '', $status = -1, $extras = array() ) {

	// Set status to 200 if setting response as successful.
	global $redirect_url;
	if ( ( true === $success ) && ( -1 === $status ) ) {
		$status = 200;
	}

	// Setup the response array.
	$response = array(
		'success' => $success,
		'status'  => $status,
		'content' => $content,
	);

	// Merge extra response parameters in.
	if ( ! empty( $extras ) && is_array( $extras ) ) {
		$response = array_merge( $response, $extras );
	}

	if ( ! empty( $redirect_url ) ) {
		$response['redirect_url'] = $redirect_url;
	}

	// Send back the JSON.
	wp_send_json( $response, $status );
}