| Server IP : 66.29.153.156 / Your IP : 216.73.216.151 Web Server : LiteSpeed System : Linux premium322.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64 User : lastyfjz ( 1521) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/lastyfjz/dermalaserclinic.co.uk/wp-content/plugins/boxzilla/src/licensing/ |
Upload File : |
<?php
namespace Boxzilla\Licensing;
defined('ABSPATH') or exit;
$boxzilla = boxzilla();
$boxzilla['license'] = function ($boxzilla) {
return new License('boxzilla_license');
};
$boxzilla['license_api'] = function ($boxzilla) {
$api_url = 'https://my.boxzillaplugin.com/api/v2';
return new API($api_url, $boxzilla['license']);
};
$boxzilla['license_manager'] = function ($boxzilla) {
return new LicenseManager($boxzilla['plugins'], $boxzilla['license_api'], $boxzilla['license']);
};
$boxzilla['update_manager'] = function ($boxzilla) {
return new UpdateManager($boxzilla['plugins'], $boxzilla['license_api'], $boxzilla['license']);
};
$boxzilla['license_poller'] = function ($boxzilla) {
return new Poller($boxzilla['license_api'], $boxzilla['license']);
};