| Server IP : 195.130.67.5 / Your IP : 216.73.217.127 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/aecm.ihu.gr/wp-content/plugins/image-optimization/modules/oauth/ |
Upload File : |
<?php
namespace ImageOptimization\Modules\Oauth;
use ImageOptimization\Classes\Module_Base;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Class Module
*/
class Module extends Module_Base {
/**
* Get module name.
* Retrieve the module name.
* @access public
* @return string Module name.
*/
public function get_name(): string {
return 'oauth';
}
public static function routes_list() : array {
return [
'Connect_Init',
'Disconnect',
'Get_Subscriptions',
'Activate',
'Deactivate',
'Version',
];
}
public static function component_list() : array {
return [
'Connect',
'Checkpoint',
'Connect_Pointer',
];
}
public static function is_active() : bool {
return ! empty( get_option( 'image_optimizer_client_data' ) );
}
public function __construct() {
$this->register_components();
$this->register_routes();
}
}