HEX
Server: LiteSpeed
System: Linux server315.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: globfdxw (6114)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //home/globfdxw/www/wp-content/plugins/kirki/includes/Ajax/Comments.php
<?php
/**
 * Dynamic content/Collection API
 *
 * @package kirki
 */

namespace Kirki\Ajax;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

use Kirki\HelperFunctions;

/**
 * Comments API Class
 */
class Comments {

	/**
	 * Get collection return api response
	 *
	 * @return void wpjson response
	 */
	public static function get_comments() {
		$sorting_param  = HelperFunctions::sanitize_text( isset( $_GET['sorting'] ) ? $_GET['sorting'] : null );
		$filter_param   = HelperFunctions::sanitize_text( isset( $_GET['filters'] ) ? $_GET['filters'] : null );
		$post_parent    = HelperFunctions::sanitize_text( $_GET['post_parent'] ?? 0 );
		$comment_parent = HelperFunctions::sanitize_text( $_GET['comment_parent'] ?? 0 );
		$comment_type   = HelperFunctions::sanitize_text( $_GET['comment_type'] ?? 'comment' );
		$item_per_page  = HelperFunctions::sanitize_text( $_GET['items'] ?? 3 );
		$current_page   = HelperFunctions::sanitize_text( $_GET['current_page'] ?? 1 );
		$offset         = HelperFunctions::sanitize_text( $_GET['offset'] ?? 0 );

		$sorting = null;
		$filters = null;

		if ( isset( $sorting_param ) ) {
			$sorting = json_decode( stripslashes( $sorting_param ), true );
		}

		if ( isset( $filter_param ) ) {
			$filters = json_decode( stripslashes( $filter_param ), true );
		}

		$comments = HelperFunctions::get_comments(
			array(
				'parent'        => $comment_parent,
				'post_id'       => $post_parent,
				'type'          => $comment_type,
				'offset'        => $offset,
				'sorting'       => $sorting,
				'filters'       => $filters,
				'item_per_page' => $item_per_page,
				'current_page'  => $current_page,
			)
		);

		wp_send_json( $comments );

		die();
	}
}