HEX
Server: LiteSpeed
System: Linux da4 4.18.0-553.74.1.lve.el8.x86_64 #1 SMP Tue Sep 9 14:25:24 UTC 2025 x86_64
User: wwwprimemarka (2294)
PHP: 5.6.40
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/wwwprimemarka/public_html/wp-content/themes/Zephyr/framework/vendor/tf-updater/index.php
<?php
/*
	Plugin Name: Themeforest Themes Update
	Plugin URI: https://github.com/bitfade/themeforest-themes-update
	Description: Updates all themes purchased from themeforest.net
	Author: pixelentity
	Version: 1.0
	Author URI: http://pixelentity.com
*/

if ( us_get_option( 'themeforest_username' ) AND us_get_option( 'themeforest_api_key' ) ) {
	function us_themeforest_themes_update( $updates ) {
		global $us_template_directory;
		if ( isset( $updates->checked ) ) {
			require_once( $us_template_directory . '/framework/vendor/tf-updater/pixelentity-themes-updater/class-pixelentity-themes-updater.php' );

			$username = us_get_option( 'themeforest_username' );
			$apikey = us_get_option( 'themeforest_api_key' );
			$author = 'UpSolution';

			$updater = new Pixelentity_Themes_Updater( $username, $apikey, $author );
			$updates = $updater->check( $updates );
		}

		return $updates;
	}

	add_filter( "pre_set_site_transient_update_themes", "us_themeforest_themes_update" );
}