| Server IP : 149.28.60.191 / Your IP : 216.73.217.128 Web Server : nginx/1.31.1 System : Linux vultr.guest 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : mda ( ) PHP Version : 7.4.33 Disable Function : getmyuid,passthru,leak,listen,diskfreespace,tmpfile,link,shell_exec,dl,exec,system,highlight_file,source,show_source,fpassthru,virtual,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix_getppid,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,proc_open,proc_close,proc_nice,proc_terminate,escapeshellcmd,ini_alter,popen,pcntl_exec,socket_accept,socket_bind,socket_clear_error,socket_close,socket_connect,symlink,posix_geteuid,ini_alter,socket_listen,socket_create_listen,socket_read,socket_create_pair,stream_socket_server MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/mda/webapps/mda-restore/wp-content/themes/Avada/includes/ |
Upload File : |
<?php
/**
* Handles remotely installing premium plugins.
*
* @author ThemeFusion
* @copyright (c) Copyright by ThemeFusion
* @link https://theme-fusion.com
* @package Avada
* @subpackage Core
* @since 5.0.0
*/
// Do not allow directly accessing this file.
if ( ! defined( 'ABSPATH' ) ) {
exit( 'Direct script access denied.' );
}
/**
* Remote installer for premium plugins.
* This only works with our custom server plugin.
*
* @since 5.0.0
*/
class Avada_Remote_Installer {
/**
* The remote API URL.
*
* @access private
* @var string
*/
private $api_url;
/**
* The constructor.
*
* @access public
*/
public function __construct() {
$this->api_url = trailingslashit( FUSION_UPDATES_URL );
}
/**
* Gets the download URL for a plugin.
*
* @access public
* @since 5.0.0
* @param string $download The plugin to download.
* @param string|false $token Force-use a token, or use default if false.
* @return string|false
*/
public function get_package( $download, $token = false ) {
$api_args = [
'avada_action' => 'get_download',
'item_name' => rawurlencode( $download ),
'ver' => Avada::get_theme_version(),
];
if ( Avada()->registration->is_registered() ) {
$api_args['code'] = Avada()->registration->get_purchase_code();
} elseif ( Avada()->registration->legacy_support() ) {
$api_args['token'] = Avada()->registration->get_token();
} elseif ( ! Avada()->registration->bypass_active() ) {
return false;
}
return add_query_arg( $api_args, $this->api_url );
}
/**
* Gets the download URL for a plugin.
*
* @since 5.3
* @access public
* @return bool True if subscription code is valid, false otherwise.
*/
public function validate_envato_hosted_subscription_code() {
return true;
}
}