| Server IP : 198.38.94.67 / Your IP : 216.73.217.142 Web Server : LiteSpeed System : Linux d6054.dxb1.stableserver.net 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64 User : azfilmst ( 1070) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/azfilmst/public_html/wp-content/plugins/image-optimization/modules/connect-manager/ |
Upload File : |
<?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() );
}
}
}