HEX
Server: Apache
System: Linux webm014.cluster128.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: circuix (152771)
PHP: 8.0.30
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/circuix/www/wp-content/plugins/wp-file-manager-pro/classes/updates.php
<?php
/**
 * Package: WP File Manager Pro
 * Update Check Class
 * Class: wp_file_manager_pro_updates
 */
if(!class_exists('wp_file_manager_pro_updates')) {

    class wp_file_manager_pro_updates {
        
        /**
         * Server
         */
        static $server = 'https://filemanagerpro.io/plugin_updates/wp_file_manager';

        /**
         * Install
         */
        public function update($filePath) {
			$opt = get_option('wp_file_manager_pro');
			$orderID = isset($opt['orderid']) ? $opt['orderid'] : '';
			$licencekey = isset($opt['serialkey']) ? $opt['serialkey'] : '';
			if(!empty(trim($licencekey)) && !empty(trim($orderID))) {
				require FILEMANEGERPROPATH.'plugin-update-checker/plugin-update-checker.php';
				Puc_v4_Factory::buildUpdateChecker(
					self::$server.'?orderid='.$orderID.'&licencekey='.$licencekey,
					$filePath,
					'wp-file-manager-pro'
				);
			}
        }
    }
}