| Server IP : 51.91.236.255 / Your IP : 216.73.217.120 Web Server : Apache System : Linux webm002.cluster129.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : laureet ( 1012854) PHP Version : 8.0.30 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/laureet/www/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() );
}
}
}