SILENT KILLERPanel

Current Path: > home > codekrsu > > escapematrixonline.com > wp-content > plugins > carousel-slider > > includes


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/codekrsu//escapematrixonline.com/wp-content/plugins/carousel-slider//includes

NameTypeSizeLast ModifiedActions
Abstracts Directory - -
Admin Directory - -
CLI Directory - -
Frontend Directory - -
Integration Directory - -
Interfaces Directory - -
REST Directory - -
Supports Directory - -
Traits Directory - -
Widget Directory - -
Ajax.php File 874 bytes April 10 2025 09:40:10.
Api.php File 4685 bytes June 14 2024 19:04:34.
Assets.php File 5817 bytes April 10 2025 09:40:10.
Autoloader.php File 4124 bytes April 10 2025 09:40:10.
Helper.php File 14211 bytes April 10 2025 09:40:10.
Plugin.php File 7504 bytes April 10 2025 09:40:10.
TemplateParserBase.php File 4964 bytes April 10 2025 09:40:10.
TrackingData.php File 7011 bytes June 14 2024 19:04:34.
ViewHelper.php File 1345 bytes April 10 2025 09:40:10.

Reading File: /home/codekrsu//escapematrixonline.com/wp-content/plugins/carousel-slider//includes/Ajax.php

<?php
/**
 * The ajax-specific functionality of the plugin.
 *
 * @package CarouselSlider
 */

namespace CarouselSlider;

defined( 'ABSPATH' ) || exit;

/**
 * Ajax class
 */
class Ajax {

	/**
	 * The instance of the class
	 *
	 * @var self
	 */
	protected static $instance;

	/**
	 * Ensures only one instance of the class is loaded or can be loaded.
	 *
	 * @return self
	 */
	public static function init() {
		if ( is_null( self::$instance ) ) {
			self::$instance = new self();

			add_action( 'wp_ajax_carousel_slider_test', [ self::$instance, 'test' ] );
		}

		return self::$instance;
	}

	/**
	 * A AJAX method just to test some data
	 */
	public function test() {
		if ( ! current_user_can( 'manage_options' ) ) {
			wp_die( 'Sorry. This link only for developer to do some testing.' );
		}

		var_dump( 'Testing some data on AJAX' ); // phpcs:ignore
		die();
	}
}

SILENT KILLER Tool