HEX
Server: Apache/2.4.54 (Debian)
System: Linux f988254d8f22 6.8.0-87-generic #88~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue Oct 14 14:03:14 UTC 2 x86_64
User: (1000)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/themes/hitmag-pro/updater/theme-updater.php
<?php
/**
 * Easy Digital Downloads Theme Updater
 *
 * @package HitMag Pro
 */

// Includes the files needed for the theme updater
if ( !class_exists( 'HitMag_Pro_Theme_Updater_Admin' ) ) {
	include( dirname( __FILE__ ) . '/theme-updater-admin.php' );
}

// Loads the updater classes
$updater = new HitMag_Pro_Theme_Updater_Admin(

	// Config settings
	$config = array(
		'remote_api_url' => 'https://themezhut.com', // Site where EDD is hosted
		'item_name'      => 'HitMag Pro', // Name of theme
		'theme_slug'     => 'hitmag-pro', // Theme slug
		'version'        => '1.3.1', // The current version of this theme
		'author'         => 'ThemezHut', // The author of this theme
		'download_id'    => '', // Optional, used for generating a license renewal link
		'renew_url'      => '', // Optional, allows for a custom license renewal link
		'beta'           => false, // Optional, set to true to opt into beta versions
	),

	// Strings
	$strings = array(
		'theme-license'             => __( 'Theme License', 'hitmag-pro' ),
		'enter-key'                 => __( 'Enter your theme license key in order to receive theme updates and support.', 'hitmag-pro' ),
		'license-key'               => __( 'License Key', 'hitmag-pro' ),
		'license-action'            => __( 'License Action', 'hitmag-pro' ),
		'deactivate-license'        => __( 'Deactivate License', 'hitmag-pro' ),
		'activate-license'          => __( 'Activate License', 'hitmag-pro' ),
		'status-unknown'            => __( 'License status is unknown.', 'hitmag-pro' ),
		'renew'                     => __( 'Renew?', 'hitmag-pro' ),
		'unlimited'                 => __( 'unlimited', 'hitmag-pro' ),
		'license-key-is-active'     => __( 'License key is active.', 'hitmag-pro' ),
		'expires%s'                 => __( 'Expires %s.', 'hitmag-pro' ),
		'expires-never'             => __( 'Lifetime License.', 'hitmag-pro' ),
		'%1$s/%2$-sites'            => __( 'You have %1$s / %2$s sites activated.', 'hitmag-pro' ),
		'license-key-expired-%s'    => __( 'License key expired %s.', 'hitmag-pro' ),
		'license-key-expired'       => __( 'License key has expired.', 'hitmag-pro' ),
		'license-keys-do-not-match' => __( 'License keys do not match.', 'hitmag-pro' ),
		'license-is-inactive'       => __( 'License is inactive.', 'hitmag-pro' ),
		'license-key-is-disabled'   => __( 'License key is disabled.', 'hitmag-pro' ),
		'site-is-inactive'          => __( 'Site is inactive.', 'hitmag-pro' ),
		'license-status-unknown'    => __( 'License status is unknown.', 'hitmag-pro' ),
		'update-notice'             => __( "Are you sure? 'Cancel' to stop, 'OK' to update.", 'hitmag-pro' ),
		'update-available'          => __('<strong>%1$s %2$s</strong> is available. <a href="%3$s" class="thickbox" title="%4s">Check out what\'s new</a> or <a href="%5$s"%6$s>update now</a>.', 'hitmag-pro' ),
	)

);