Uname: Linux p3plzcpnl499967.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Software: Apache
PHP version: 8.2.30 [ PHP INFO ] PHP os: Linux
Server Ip: 208.109.40.231
Your Ip: 216.73.216.173
User: nayff91c5tsx (10005085) | Group: nayff91c5tsx (10005085)
Safe Mode: OFF
Disable Function:
NONE

name : manager.php
<?php
namespace Jet_Reviews\Comments;

use Jet_Reviews\Endpoints as Endpoints;

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

class Manager {

	/**
	 * A reference to an instance of this class.
	 *
	 * @since 1.0.0
	 * @var   object
	 */
	private static $instance = null;

	/**
	 * [$key description]
	 * @var string
	 */
	private $slug = 'comments-manager';

	/**
	 * [$page description]
	 * @var null
	 */
	public $data = null;

	/**
	 * [$page description]
	 * @var null
	 */
	public $list_page = null;

	/**
	 * Constructor for the class
	 */
	function __construct() {

		$this->load_files();

		add_action( 'jet-reviews/init', array( $this, 'init' ) );

		add_action( 'jet-reviews/rest/init-endpoints', array( $this, 'init_endpoints' ), 10, 1 );

	}

	/**
	 * [get_slug description]
	 * @return [type] [description]
	 */
	public function get_slug() {
		return $this->slug;
	}

	/**
	 * [load_files description]
	 * @return [type] [description]
	 */
	public function load_files() {

		// admin endpoints
		require jet_reviews()->plugin_path( 'includes/components/comments/rest-api/get-admin-comments-list.php' );
		require jet_reviews()->plugin_path( 'includes/components/comments/rest-api/update-comment.php' );
		require jet_reviews()->plugin_path( 'includes/components/comments/rest-api/delete-comment.php' );
		require jet_reviews()->plugin_path( 'includes/components/comments/rest-api/toggle-comment-approve.php' );

		/*require jet_reviews()->plugin_path( 'includes/components/reviews/rest-api/update-review.php' );
		require jet_reviews()->plugin_path( 'includes/components/reviews/rest-api/add-review-type.php' );
		require jet_reviews()->plugin_path( 'includes/components/reviews/rest-api/update-review-type.php' );
		require jet_reviews()->plugin_path( 'includes/components/reviews/rest-api/delete-review-type.php' );*/

		// public endpoint
		require jet_reviews()->plugin_path( 'includes/components/comments/rest-api/submit-review-comment.php' );

		// general
		require jet_reviews()->plugin_path( 'includes/components/comments/data.php' );

		if ( is_admin() ) {
			require jet_reviews()->plugin_path( 'includes/components/comments/admin-pages/list-page.php' );
		}

	}

	/**
	 * [init description]
	 * @return [type] [description]
	 */
	public function init() {

		$this->data = new Data();

		if ( is_admin() ) {
			$this->list_page = new List_Page();
		}
	}

	/**
	 * [init_endpoints description]
	 * @return [type] [description]
	 */
	public function init_endpoints( $rest_api_manager ) {
		// admin endpoints
		$rest_api_manager->register_endpoint( new Endpoints\Get_Admin_Comments_List() );
		$rest_api_manager->register_endpoint( new Endpoints\Update_Comment() );
		$rest_api_manager->register_endpoint( new Endpoints\Delete_Comment() );
		$rest_api_manager->register_endpoint( new Endpoints\Toggle_Comment_Approve() );

		/*$rest_api_manager->register_endpoint( new Endpoints\Update_Review() );

		$rest_api_manager->register_endpoint( new Endpoints\Add_Review_Type() );
		$rest_api_manager->register_endpoint( new Endpoints\Update_Review_Type() );
		$rest_api_manager->register_endpoint( new Endpoints\Delete_Review_Type() );*/

		// public endpoint
		$rest_api_manager->register_endpoint( new Endpoints\Submit_Review_Comment() );
	}

	/**
	 * Returns the instance.
	 *
	 * @since  1.0.0
	 * @return object
	 */
	public static function get_instance() {

		// If the single instance hasn't been set, set it now.
		if ( null == self::$instance ) {
			self::$instance = new self;
		}
		return self::$instance;
	}
}
© 2026 GrazzMean