<?php /** * Theme updater * * @package Theme Palace * @subpackage Businesszen * @since Businesszen 1.0.0 */ // Includes the files needed for the theme updater if ( !class_exists( 'EDD_Theme_Updater_Admin' ) ) { require get_template_directory() . '/inc/updater/theme-updater-admin.php'; } // Loads the updater classes $updater = new EDD_Theme_Updater_Admin( // Config settings $config = array( 'remote_api_url' => 'https://themepalace.com', // Site where EDD is hosted 'item_name' => 'Businesszen', // Name of theme 'theme_slug' => 'businesszen', // Theme slug 'version' => '1.0.0', // The current version of this theme 'author' => 'Theme Palace', // The author of this theme 'download_id' => '', // Optional, used for generating a license renewal link 'renew_url' => 'https://themepalace.com/my-account' // Optional, allows for a custom license renewal link ), // Strings $strings = array( 'theme-license' => __( 'Theme License', 'businesszen' ), 'enter-key' => __( 'Enter your theme license key.', 'businesszen' ), 'license-key' => __( 'License Key', 'businesszen' ), 'license-action' => __( 'License Action', 'businesszen' ), 'deactivate-license' => __( 'Deactivate License', 'businesszen' ), 'activate-license' => __( 'Activate License', 'businesszen' ), 'status-unknown' => __( 'License status is unknown.', 'businesszen' ), 'renew' => __( 'Renew?', 'businesszen' ), 'unlimited' => __( 'unlimited', 'businesszen' ), 'license-key-is-active' => __( 'License key is active.', 'businesszen' ), 'expires%s' => __( 'Expires %s.', 'businesszen' ), '%1$s/%2$-sites' => __( 'You have %1$s / %2$s sites activated.', 'businesszen' ), 'license-key-expired-%s' => __( 'License key expired %s.', 'businesszen' ), 'license-key-expired' => __( 'License key has expired.', 'businesszen' ), 'license-keys-do-not-match' => __( 'License keys do not match.', 'businesszen' ), 'license-is-inactive' => __( 'License is inactive.', 'businesszen' ), 'license-key-is-disabled' => __( 'License key is disabled.', 'businesszen' ), 'site-is-inactive' => __( 'Site is inactive.', 'businesszen' ), 'license-status-unknown' => __( 'License status is unknown.', 'businesszen' ), 'update-notice' => __( "Updating this theme will lose any customizations you have made. 'Cancel' to stop, 'OK' to update.", 'businesszen' ), 'update-available' => __('<strong>%1$s %2$s</strong> is available. <a href="%3$s" class="thickbox" title="%4$s">Check out what\'s new</a> or <a href="%5$s"%6$s>update now</a>.', 'businesszen' ) ) );