/* Decoded by unphp.net */ exthemes, "download_id" => '', "theme_slug" => get_template(), "item_name" => '', "license" => '', "version" => '', "author" => '', "renew_url" => '', "beta" => false)); $this->remote_api_url = $config["remote_api_url"]; $this->item_name = $config["item_name"]; $this->theme_slug = sanitize_key($config["theme_slug"]); $this->version = $config["version"]; $this->author = $config["author"]; $this->download_id = $config["download_id"]; $this->renew_url = $config["renew_url"]; $this->beta = $config["beta"]; if ('' == $config["version"]) { $theme = wp_get_theme($this->theme_slug); $this->version = $theme->get("Version"); } $this->strings = $strings; add_action("init", array($this, "updater_edd_themes")); add_action("admin_init", array($this, "register_option")); add_action("admin_init", array($this, "license_action"), 20); add_action("admin_menu", array($this, "license_menu")); add_action("add_option_" . $this->theme_slug . "_license_key", array($this, "activate_license"), 20, 2); add_action("update_option_" . $this->theme_slug . "_license_key", array($this, "activate_license"), 20, 2); add_filter("http_request_args", array($this, "disable_wporg_request"), 5, 2); } ?>