HEX
Server: Apache
System: Linux 65-254-81-60.cprapid.com 4.18.0-477.27.2.el8_8.x86_64 #1 SMP Fri Sep 29 08:21:01 EDT 2023 x86_64
User: roshanchandy (1003)
PHP: 8.4.12
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/roshanchandy/public_html/dubai91.com/wp-content/themes/inclub/inc/updater/theme-updater.php
<?php
/**
 * Easy Digital Downloads Theme Updater
 *
 * @package EDD Sample Theme
 */

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

// Loads the updater classes
$updater = new AWAIKEN_Theme_Updater_Admin(
	// Config settings
	array(
		'remote_api_url' => 'https://awaikenthemes.com/', // Site where EDD is hosted
		'tf_pc_val_api_url' => 'https://awaikenthemes.com/wp-json/themeforest/v1/validate-purchase', // Site where EDD is hosted
		'item_name'      => AWAIKEN_ITEM_NAME, // Name of theme
		'theme_slug'     => AWAIKEN_THEME_SLUG, // Theme slug
		'version'        => wp_get_theme( get_template() )->get( 'Version' ), // The current version of this theme
		'author'         => 'Awaiken', // 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
		'item_id'        => AWAIKEN_ITEM_ID,
	),
	// Strings
	array(
		'activate-license-info'     => __( 'Please activate the theme license key to proceed.', 'inclub' ),
		'maybe-later-btn'    	 => __( 'Maybe Later', 'inclub' ),
		'dismiss-notice-btn'    	 => __( 'Dismiss this notice', 'inclub' ),
		'theme-license'             => __( 'Theme License', 'inclub' ),
		'enter-key-tf'              => __( 'Enter your Item Purchase Code. <a href="%s" rel="noopener noreferrer" target="_blank">Refer to the article for instructions on where to find it</a>.', 'inclub' ),
		'enter-key'                 => __( 'Enter your theme license key.', 'inclub' ),
		'license-key'               => __( 'License Key', 'inclub' ),
		'license-buyer-email'       => __( 'Email', 'inclub' ),
		'license-action'            => __( 'License Action', 'inclub' ),
		'deactivate-license'        => __( 'Deactivate License', 'inclub' ),
		'activate-license'          => __( 'Activate License', 'inclub' ),
		'status-unknown'            => __( 'License status is unknown.', 'inclub' ),
		'renew'                     => __( 'Renew?', 'inclub' ),
		'unlimited'                 => __( 'unlimited', 'inclub' ),
		'license-key-is-active'     => __( 'License key is active.', 'inclub' ),
		/* translators: the license expiration date */
		'expires%s'                 => __( 'Expires %s.', 'inclub' ),
		'expires-never'             => __( 'Lifetime License.', 'inclub' ),
		/* translators: 1. the number of sites activated 2. the total number of activations allowed. */
		'%1$s/%2$-sites'            => __( 'You have %1$s / %2$s sites activated.', 'inclub' ),
		'activation-limit'          => __( 'Your license key has reached its activation limit.', 'inclub' ),
		/* translators: the license expiration date */
		'license-key-expired-%s'    => __( 'License key expired %s.', 'inclub' ),
		'license-key-expired'       => __( 'License key has expired.', 'inclub' ),
		/* translators: the license expiration date */
		'license-expired-on'        => __( 'Your license key expired on %s.', 'inclub' ),
		'license-keys-do-not-match' => __( 'License keys do not match.', 'inclub' ),
		'license-is-inactive'       => __( 'License is inactive.', 'inclub' ),
		'license-key-is-disabled'   => __( 'License key is disabled.', 'inclub' ),
		'license-key-invalid'       => __( 'Invalid license.', 'inclub' ),
		'site-is-inactive'          => __( 'Your license is not active for this URL.', 'inclub' ),
		/* translators: the theme name */
		'item-mismatch'             => __( 'This appears to be an invalid license key for %s.', 'inclub' ),
		'license-status-unknown'    => __( 'License status is unknown.', 'inclub' ),
		'update-notice'             => __( "Updating this theme will lose any customizations you have made. 'Cancel' to stop, 'OK' to update.", 'inclub' ),
		'error-generic'             => __( 'An error occurred, please try again.', 'inclub' ),
		'pending-active'            => __( 'Click the Activate License button to activate the license.', 'inclub' ),
	)
);