uawdijnntqw1x1x1
IP : 216.73.216.109
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
batcwwjx
/
.
/
old
/
public_html
/
wp-content
/
.
/
plugins
/
clearfy
/
includes
/
classes
/
class.licensing.php
/
/
<?php /** * Class for working with the licensing system * * @author Alex Kovalev <alex.kovalevv@gmail.com> * @copyright (c) 2018 Webraftic Ltd * @version 1.0 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } class WCL_Licensing { public $id; public $secret_key; /** * @since 1.0 * @var WCL_Licensing */ private static $instance; /** * Initialization of the licensing system * */ private function __construct() { if ( WCL_Plugin::app()->premium->is_activate() ) { $this->id = 1; $this->secret_key = WCL_Plugin::app()->premium->get_license()->get_key(); } } /** * Getting a licensing system * * @return WCL_Licensing */ public static function instance() { if ( self::$instance ) { return self::$instance; } self::$instance = new self(); return self::$instance; } /** * Returns a storage object * * @return WCL_Licensing */ public function getStorage() { return self::instance(); } /** * @return \WCL_Licensing * @since 1.1 * @author Alexander Kovalev <alex.kovalevv@gmail.com> */ public function getLicense() { return self::instance(); } /** * Checks if current license has expired * * @return bool */ public function isLicenseValid() { return WCL_Plugin::app()->premium->is_activate(); } }
/home/batcwwjx/./old/public_html/wp-content/./plugins/clearfy/includes/classes/class.licensing.php