Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
function license_page() { $strings = $this->strings; $license = tri..
Decoded Output download
<? function license_page()
{
$strings = $this->strings;
$license = trim(get_option($this->theme_slug . "_license_key"));
if (!$license) {
$message = $strings["enter-key"];
} else {
delete_transient($this->theme_slug . "_license_message");
if (!get_transient($this->theme_slug . "_license_message", false)) {
set_transient($this->theme_slug . "_license_message", $this->check_license(), 60 * 60 * 24);
}
$message = get_transient($this->theme_slug . "_license_message");
}
$status = get_option($this->theme_slug . "_license_key_status", false);
global $post;
$license = trim(get_option($this->theme_slug . "_license_key"));
$strings = $this->strings;
$api_params = array("edd_action" => "check_license", "license" => $license, "item_name" => urlencode($this->item_name), "url" => home_url("/"));
$response = $this->get_api_response($api_params);
$license_data = json_decode(wp_remote_retrieve_body($response));
$site_count = isset($license_data->site_count) ? $license_data->site_count : '';
$customer_name = isset($license_data->customer_name) ? $license_data->customer_name : '';
$customer_email = isset($license_data->customer_email) ? $license_data->customer_email : '';
$license_limit = isset($license_data->license_limit) ? $license_data->license_limit : '';
$expires = false;
if (isset($license_data->expires) && "lifetime" != $license_data->expires) {
$expires = date_i18n(get_option("date_format"), strtotime($license_data->expires, current_time("timestamp")));
$renew_link = "<a href="" . esc_url($this->get_renewal_link()) . "" target="_blank">" . $strings["renew"] . "</a>";
} elseif (isset($license_data->expires) && "lifetime" == $license_data->expires) {
$expires = "lifetime";
}
if (0 == $license_limit) {
$license_limit = $strings["unlimited"];
}
$gravatar_link = "//gravatar.com/avatar/" . md5($customer_email);
$user_info = get_userdata(1);
$author_names = $user_info->user_login; ?>
<style>
.exthemes-wp-license-form {
padding: 10px 20px;
border-left: 4px solid #00a0d2
}
.exthemes-wp-license-form input {
height: 40px;
line-height: 40px;
padding: 0 10px;
vertical-align: top;
background: #f5f5f5
}
.wp-core-ui .exthemes-wp-license-form .button, .wp-core-ui .exthemes-wp-license-form .button-primary, .wp-core-ui .exthemes-wp-license-form .button-secondary {
height: 40px;
line-height: 40px;
padding: 0 20px;
vertical-align: top
}
.exthemes-wp-license-form a {
text-decoration: none
}
.exthemes-wp-license-good {
color: #3c763d
}
.exthemes-wp-license-bad {
color: #a94442
}
@import 'https://fonts.googleapis.com/css?family=Open+Sans:300,400';
.firstinfo, .badgescard {
display: flex;
justify-content: center;
align-items: center
}
*, *:before, *:after {
box-sizing: border-box
}
.content2 {
position: relative;
animation: animatop .9s cubic-bezier(0.425, 1.14, 0.47, 1.125) forwards;
}
.card {
width: 500px;
min-height: 100px;
padding: 20px;
border-radius: 3px;
background-color: white;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
position: relative;
overflow: hidden
}
.card:after {
content: "";
display: block;
width: 190px;
height: 300px;
background: #2271b1;
position: absolute;
animation: rotatemagic .75s cubic-bezier(0.425, 1.04, 0.47, 1.105) 1s both
}
.badgescard {
padding: 10px 20px;
border-radius: 3px;
background-color: #ececec;
width: 480px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
position: absolute;
z-index: -1;
left: 10px;
bottom: 10px;
animation: animainfos .5s cubic-bezier(0.425, 1.04, 0.47, 1.105) .75s forwards
}
.badgescard span {
font-size: 1.6em;
margin: 0 6px;
opacity: .6
}
.firstinfo {
flex-direction: row;
z-index: 2;
position: relative
}
.firstinfo img {
border-radius: 50%;
width: 75px;
height: 75px
}
.firstinfo .profileinfo {
padding: 0 20px
}
.firstinfo .profileinfo h1 {
font-size: 1.8em
}
.firstinfo .profileinfo h3 {
font-size: 1.2em;
color: #2271b1;
font-style: italic
}
.firstinfo .profileinfo p.bio {
padding: 10px 0;
color: #5a5a5a;
line-height: 1.2;
font-style: initial
}
@keyframes animatop {
0% {
opacity: 0;
bottom: -500px
}
100% {
opacity: 1;
bottom: 0
}
}
@keyframes animainfos {
0% {
bottom: 10px
}
100% {
bottom: -42px
}
}
@keyframes rotatemagic {
0% {
opacity: 0;
transform: rotate(0deg);
top: -24px;
left: -253px
}
100% {
transform: rotate(-30deg);
top: -24px;
left: -78px
}
}
.firstinfo2 {
flex-direction: row;
z-index: 2;
position: relative
}
.firstinfo2 a {
color: dodgerblue
}
.card2 {
width: 500px;
border-radius: 3px;
background-color: white;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
position: relative;
overflow: hidden;
margin-top: 2em;
}
.card2:after {
content: "";
display: block;
width: 190px;
height: 300px;
background:;
position: absolute;
animation: rotatemagic .75s cubic-bezier(0.425, 1.04, 0.47, 1.105) 1s both
}
.card2 h2 {
font-size: 1.2em;
color: #2271b1;
margin-left: 2em
}
.blink {
background: url(<?php echo EX_THEMES_URI; ?>
/assets/img/sparks.gif)
}
.col-main {
flex: 1
}
.col-complementary {
flex: 1
}
@media only screen and (min-width: 640px) {
.layout {
display: flex
}
}
.container {
margin-right: auto;
margin-left: auto
}
.col {
padding: 0;
margin: 0 2px 2px 0;
background: transparent
}
</style>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
<div class="container">
<div class="card2">
<h2 class="firstinfo2" style="text-align: center;">
~ <?php echo $strings["license-key"]; ?>
for <b style="color: blue;text-transform: uppercase;"><?php echo THEMES_NAMES; ?>
</b> v.<?php echo EXTHEMES_VERSION; ?>
~ </h2>
</div>
<div class="layout">
<div class="col col-main">
<h2 style="text-transform: uppercase;color: red;"> ~ how to setting ~ </h2>
<iframe height="200" width="93%" src="https://www.youtube.com/embed/<?php echo IDIFRAMEYUTUBE; ?>
" title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
<?php if ($license) {
if (in_array($status, array("valid"))) { ?>
<div class="card">
<div class="firstinfo">
<img src="<?php echo $gravatar_link; ?>
">
<div class="profileinfo">
<h1 style="color:crimson; text-transform: uppercase !important;"><?php echo $customer_name; ?>
</h1>
<h3 style="font-size: 1em !important;font-weight: bold;">My License Key : <b
style="color:maroon"><?php echo $this->get_hidden_license($license); ?>
</b></h3>
<p class="bio">
<?php echo sprintf($strings["%1$s/%2$-sites"], $site_count, $license_limit); ?>
<br>
<?php echo sprintf($strings["customer-email-%1$s"], $this->get_hidden_email($customer_email), $license_limit); ?>
<br>
<?php echo sprintf($strings["expires%s"], $expires); ?>
</p>
</div>
</div>
<br>
<p style="float: right; ">
<i class="fa fa-globe" style="color: crimson;"></i> <a
href="<?php echo EXTHEMES_ITEMS_URL; ?>
" target="_blank"><?php echo EXTHEMES_AUTHOR; ?>
</a>
<i class="fa fa-youtube" style="color: crimson;"></i> <a
href="<?php echo EXTHEMES_YOUTUBE_URL; ?>
" target="_blank"><?php echo EXTHEMES_AUTHOR; ?>
</a>
<i class="fa fa-facebook" style="color: crimson;"></i> <a
href="<?php echo EXTHEMES_FACEBOOK_URL; ?>
" target="_blank"><?php echo EXTHEMES_AUTHOR; ?>
</a>
</p>
</div>
<?php }
} else {
} ?>
<form method="post" action="options.php" class="card2 ">
<?php settings_fields($this->theme_slug . '');
wp_nonce_field($this->theme_slug . "_nonce", $this->theme_slug . "_nonce");
if ($license) {
if (in_array($status, array("valid"))) {
} elseif (in_array($status, array("site_inactive"))) {
} else {
}
} else { ?>
<p class="firstinfo">Hello <strong
style=" color: #a94442;text-transform: uppercase;text-shadow: 1px 1px white;"><?php echo $author_names; ?>
</strong>, Please Enter your license key <strong
style="color: #a94442;text-transform: uppercase; text-shadow: 1px 1px white;"> <?php echo THEMES_NAMES; ?>
</strong> Themes </p>
<?php }
if ($license) {
if (in_array($status, array("valid"))) { ?>
<p class="firstinfo"><input id="<?php echo $this->theme_slug; ?>
_license_key" name="<?php echo $this->theme_slug; ?>
_license_key_hidden" type="text" class="regular-text" value="<?php echo $this->get_hidden_license($license); ?>
" disabled/>
<input type="submit" class="button button-primary"
name="<?php echo $this->theme_slug; ?>
_license_deactivate"
value="<?php echo esc_attr($strings["deactivate-license"]); ?>
"/></p>
<?php } elseif (in_array($status, array("site_inactive"))) {
} else { ?>
<p class="firstinfo"><input id="<?php echo $this->theme_slug; ?>
_license_key" name="<?php echo $this->theme_slug; ?>
_license_key" type="text" class="regular-text" value=""
placeholder="<?php echo $strings["enter-key"]; ?>
"/>
<input type="submit" class="button button-primary" name="submit"
value="<?php echo esc_attr($strings["activate-license"]); ?>
"/></p>
<p class="firstinfo"><span
class="description">Your License Key : <strong><?php echo $this->get_hidden_license($license); ?>
</strong>.<br/><span class="exthemes-wp-license-bad"><b>STATUS : <i class="fa fa-lock"
style="color:#a94442"></i> </b> <?php echo $message; ?>
</span></span></p>
<?php }
} else { ?>
<p class="firstinfo"><input id="<?php echo $this->theme_slug; ?>
_license_key" name="<?php echo $this->theme_slug; ?>
_license_key" type="text" class="regular-text" value=""
placeholder="<?php echo $strings["enter-key"]; ?>
"/><input type="submit" class="button button-primary" name="submit"
value="<?php echo esc_attr($strings["activate-license"]); ?>
"/></p>
<p class="firstinfo"><span class="description"><span
class="exthemes-wp-license-bad"> <?php echo $message; ?>
</span></span></p>
<?php } ?>
</form>
<?php if ($license) {
if (in_array($status, array("valid"))) {
} elseif (in_array($status, array("site_inactive"))) {
} else {
}
} else { ?>
<div class="card2">
<h2 class="firstinfo2" style=" text-shadow: 1px 1px white;">How to Get a License Key <b
style="color: blue;text-transform: uppercase;"><?php echo THEMES_NAMES; ?>
</b> v.<?php echo EXTHEMES_VERSION; ?>
Wordpress Themes?</h2>
<p class="firstinfo2">
<ol class="firstinfo2" style="color:#a94442; text-shadow: 1px 1px white;">
<li>if You ALREADY Buy , <i class="fa fa-hand-o-right" style="color:#3c763d"></i> <b><a
href="<?php echo EXTHEMES_MEMBER_URL; ?>
" target="_blank">Login to the member area</a></b></li>
<li>if You Forget License Key , <i class="fa fa-hand-o-right" style="color:#3c763d"></i>
<b><a href="<?php echo EXTHEMES_HOW_TO; ?>
" target="_blank">See My License Key</a></b></li>
<li>if You haven't bought yet , <i class="fa fa-hand-o-right" style="color:#3c763d"></i>
<b><a href="<?php echo EXTHEMES_ITEMS_URL; ?>
" target="_blank">Buy <?php echo EXTHEMES_NAME; ?>
</a></b></li>
</ol>
</p>
</div>
<?php } ?>
</div>
<div class="col col-complementary" role="complementary">
<?php echo file_get_contents(WEBSCHANGELOGS); ?>
</div>
</div>
</div>
<?php } ?>
Did this file decode correctly?
Original Code
function license_page()
{
$strings = $this->strings;
$license = trim(get_option($this->theme_slug . "\137\154\151\143\145\x6e\x73\x65\137\x6b\145\171"));
if (!$license) {
$message = $strings["\x65\x6e\x74\145\x72\55\x6b\x65\171"];
} else {
delete_transient($this->theme_slug . "\x5f\x6c\151\x63\145\x6e\x73\145\137\155\x65\x73\163\x61\x67\x65");
if (!get_transient($this->theme_slug . "\x5f\154\151\143\x65\156\163\x65\x5f\x6d\x65\x73\x73\141\x67\145", false)) {
set_transient($this->theme_slug . "\137\x6c\x69\x63\x65\156\x73\145\137\155\145\x73\163\141\147\145", $this->check_license(), 60 * 60 * 24);
}
$message = get_transient($this->theme_slug . "\x5f\x6c\x69\143\x65\x6e\x73\x65\137\x6d\x65\x73\x73\x61\x67\x65");
}
$status = get_option($this->theme_slug . "\137\154\151\x63\145\156\x73\145\x5f\153\x65\171\x5f\x73\164\141\x74\165\x73", false);
global $post;
$license = trim(get_option($this->theme_slug . "\137\154\x69\x63\145\x6e\x73\145\137\x6b\x65\171"));
$strings = $this->strings;
$api_params = array("\145\x64\144\137\141\x63\164\x69\x6f\x6e" => "\143\150\145\143\153\137\154\x69\x63\145\x6e\x73\x65", "\x6c\151\x63\145\156\x73\145" => $license, "\151\x74\x65\155\x5f\156\x61\x6d\145" => urlencode($this->item_name), "\165\x72\154" => home_url("\57"));
$response = $this->get_api_response($api_params);
$license_data = json_decode(wp_remote_retrieve_body($response));
$site_count = isset($license_data->site_count) ? $license_data->site_count : '';
$customer_name = isset($license_data->customer_name) ? $license_data->customer_name : '';
$customer_email = isset($license_data->customer_email) ? $license_data->customer_email : '';
$license_limit = isset($license_data->license_limit) ? $license_data->license_limit : '';
$expires = false;
if (isset($license_data->expires) && "\x6c\151\x66\145\x74\151\155\x65" != $license_data->expires) {
$expires = date_i18n(get_option("\x64\x61\x74\145\137\146\157\162\155\x61\x74"), strtotime($license_data->expires, current_time("\x74\x69\x6d\145\163\x74\141\155\160")));
$renew_link = "\74\141\40\150\162\145\146\x3d\x22" . esc_url($this->get_renewal_link()) . "\42\x20\x74\141\162\x67\x65\x74\75\42\x5f\142\x6c\141\x6e\x6b\x22\x3e" . $strings["\x72\x65\x6e\x65\x77"] . "\x3c\x2f\x61\76";
} elseif (isset($license_data->expires) && "\x6c\x69\146\145\164\151\155\145" == $license_data->expires) {
$expires = "\x6c\151\146\x65\164\x69\155\145";
}
if (0 == $license_limit) {
$license_limit = $strings["\165\156\154\x69\155\x69\x74\x65\x64"];
}
$gravatar_link = "\57\57\147\x72\141\166\x61\164\x61\x72\56\143\x6f\x6d\57\141\166\x61\x74\x61\162\x2f" . md5($customer_email);
$user_info = get_userdata(1);
$author_names = $user_info->user_login; ?>
<style>
.exthemes-wp-license-form {
padding: 10px 20px;
border-left: 4px solid #00a0d2
}
.exthemes-wp-license-form input {
height: 40px;
line-height: 40px;
padding: 0 10px;
vertical-align: top;
background: #f5f5f5
}
.wp-core-ui .exthemes-wp-license-form .button, .wp-core-ui .exthemes-wp-license-form .button-primary, .wp-core-ui .exthemes-wp-license-form .button-secondary {
height: 40px;
line-height: 40px;
padding: 0 20px;
vertical-align: top
}
.exthemes-wp-license-form a {
text-decoration: none
}
.exthemes-wp-license-good {
color: #3c763d
}
.exthemes-wp-license-bad {
color: #a94442
}
@import 'https://fonts.googleapis.com/css?family=Open+Sans:300,400';
.firstinfo, .badgescard {
display: flex;
justify-content: center;
align-items: center
}
*, *:before, *:after {
box-sizing: border-box
}
.content2 {
position: relative;
animation: animatop .9s cubic-bezier(0.425, 1.14, 0.47, 1.125) forwards;
}
.card {
width: 500px;
min-height: 100px;
padding: 20px;
border-radius: 3px;
background-color: white;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
position: relative;
overflow: hidden
}
.card:after {
content: "";
display: block;
width: 190px;
height: 300px;
background: #2271b1;
position: absolute;
animation: rotatemagic .75s cubic-bezier(0.425, 1.04, 0.47, 1.105) 1s both
}
.badgescard {
padding: 10px 20px;
border-radius: 3px;
background-color: #ececec;
width: 480px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
position: absolute;
z-index: -1;
left: 10px;
bottom: 10px;
animation: animainfos .5s cubic-bezier(0.425, 1.04, 0.47, 1.105) .75s forwards
}
.badgescard span {
font-size: 1.6em;
margin: 0 6px;
opacity: .6
}
.firstinfo {
flex-direction: row;
z-index: 2;
position: relative
}
.firstinfo img {
border-radius: 50%;
width: 75px;
height: 75px
}
.firstinfo .profileinfo {
padding: 0 20px
}
.firstinfo .profileinfo h1 {
font-size: 1.8em
}
.firstinfo .profileinfo h3 {
font-size: 1.2em;
color: #2271b1;
font-style: italic
}
.firstinfo .profileinfo p.bio {
padding: 10px 0;
color: #5a5a5a;
line-height: 1.2;
font-style: initial
}
@keyframes animatop {
0% {
opacity: 0;
bottom: -500px
}
100% {
opacity: 1;
bottom: 0
}
}
@keyframes animainfos {
0% {
bottom: 10px
}
100% {
bottom: -42px
}
}
@keyframes rotatemagic {
0% {
opacity: 0;
transform: rotate(0deg);
top: -24px;
left: -253px
}
100% {
transform: rotate(-30deg);
top: -24px;
left: -78px
}
}
.firstinfo2 {
flex-direction: row;
z-index: 2;
position: relative
}
.firstinfo2 a {
color: dodgerblue
}
.card2 {
width: 500px;
border-radius: 3px;
background-color: white;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
position: relative;
overflow: hidden;
margin-top: 2em;
}
.card2:after {
content: "";
display: block;
width: 190px;
height: 300px;
background:;
position: absolute;
animation: rotatemagic .75s cubic-bezier(0.425, 1.04, 0.47, 1.105) 1s both
}
.card2 h2 {
font-size: 1.2em;
color: #2271b1;
margin-left: 2em
}
.blink {
background: url(<?php echo EX_THEMES_URI; ?>
/assets/img/sparks.gif)
}
.col-main {
flex: 1
}
.col-complementary {
flex: 1
}
@media only screen and (min-width: 640px) {
.layout {
display: flex
}
}
.container {
margin-right: auto;
margin-left: auto
}
.col {
padding: 0;
margin: 0 2px 2px 0;
background: transparent
}
</style>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
<div class="container">
<div class="card2">
<h2 class="firstinfo2" style="text-align: center;">
~ <?php echo $strings["\x6c\x69\x63\x65\156\x73\x65\55\x6b\x65\x79"]; ?>
for <b style="color: blue;text-transform: uppercase;"><?php echo THEMES_NAMES; ?>
</b> v.<?php echo EXTHEMES_VERSION; ?>
~ </h2>
</div>
<div class="layout">
<div class="col col-main">
<h2 style="text-transform: uppercase;color: red;"> ~ how to setting ~ </h2>
<iframe height="200" width="93%" src="https://www.youtube.com/embed/<?php echo IDIFRAMEYUTUBE; ?>
" title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
<?php if ($license) {
if (in_array($status, array("\x76\141\154\x69\144"))) { ?>
<div class="card">
<div class="firstinfo">
<img src="<?php echo $gravatar_link; ?>
">
<div class="profileinfo">
<h1 style="color:crimson; text-transform: uppercase !important;"><?php echo $customer_name; ?>
</h1>
<h3 style="font-size: 1em !important;font-weight: bold;">My License Key : <b
style="color:maroon"><?php echo $this->get_hidden_license($license); ?>
</b></h3>
<p class="bio">
<?php echo sprintf($strings["\x25\x31\44\x73\x2f\x25\62\x24\55\x73\151\164\145\x73"], $site_count, $license_limit); ?>
<br>
<?php echo sprintf($strings["\x63\165\x73\x74\157\155\145\x72\55\x65\155\141\151\x6c\55\45\61\x24\x73"], $this->get_hidden_email($customer_email), $license_limit); ?>
<br>
<?php echo sprintf($strings["\145\170\x70\151\x72\145\x73\x25\x73"], $expires); ?>
</p>
</div>
</div>
<br>
<p style="float: right; ">
<i class="fa fa-globe" style="color: crimson;"></i> <a
href="<?php echo EXTHEMES_ITEMS_URL; ?>
" target="_blank"><?php echo EXTHEMES_AUTHOR; ?>
</a>
<i class="fa fa-youtube" style="color: crimson;"></i> <a
href="<?php echo EXTHEMES_YOUTUBE_URL; ?>
" target="_blank"><?php echo EXTHEMES_AUTHOR; ?>
</a>
<i class="fa fa-facebook" style="color: crimson;"></i> <a
href="<?php echo EXTHEMES_FACEBOOK_URL; ?>
" target="_blank"><?php echo EXTHEMES_AUTHOR; ?>
</a>
</p>
</div>
<?php }
} else {
} ?>
<form method="post" action="options.php" class="card2 ">
<?php settings_fields($this->theme_slug . '');
wp_nonce_field($this->theme_slug . "\x5f\156\157\156\143\x65", $this->theme_slug . "\137\x6e\x6f\156\x63\145");
if ($license) {
if (in_array($status, array("\x76\141\154\x69\x64"))) {
} elseif (in_array($status, array("\163\151\x74\145\x5f\x69\156\141\143\164\151\166\145"))) {
} else {
}
} else { ?>
<p class="firstinfo">Hello <strong
style=" color: #a94442;text-transform: uppercase;text-shadow: 1px 1px white;"><?php echo $author_names; ?>
</strong>, Please Enter your license key <strong
style="color: #a94442;text-transform: uppercase; text-shadow: 1px 1px white;"> <?php echo THEMES_NAMES; ?>
</strong> Themes </p>
<?php }
if ($license) {
if (in_array($status, array("\166\141\x6c\151\144"))) { ?>
<p class="firstinfo"><input id="<?php echo $this->theme_slug; ?>
_license_key" name="<?php echo $this->theme_slug; ?>
_license_key_hidden" type="text" class="regular-text" value="<?php echo $this->get_hidden_license($license); ?>
" disabled/>
<input type="submit" class="button button-primary"
name="<?php echo $this->theme_slug; ?>
_license_deactivate"
value="<?php echo esc_attr($strings["\144\145\141\143\x74\151\x76\x61\164\x65\x2d\154\x69\143\x65\156\x73\x65"]); ?>
"/></p>
<?php } elseif (in_array($status, array("\163\x69\x74\145\x5f\151\156\141\143\164\151\166\x65"))) {
} else { ?>
<p class="firstinfo"><input id="<?php echo $this->theme_slug; ?>
_license_key" name="<?php echo $this->theme_slug; ?>
_license_key" type="text" class="regular-text" value=""
placeholder="<?php echo $strings["\x65\156\x74\145\162\55\x6b\145\x79"]; ?>
"/>
<input type="submit" class="button button-primary" name="submit"
value="<?php echo esc_attr($strings["\141\x63\164\151\x76\141\164\x65\55\154\x69\143\x65\x6e\163\x65"]); ?>
"/></p>
<p class="firstinfo"><span
class="description">Your License Key : <strong><?php echo $this->get_hidden_license($license); ?>
</strong>.<br/><span class="exthemes-wp-license-bad"><b>STATUS : <i class="fa fa-lock"
style="color:#a94442"></i> </b> <?php echo $message; ?>
</span></span></p>
<?php }
} else { ?>
<p class="firstinfo"><input id="<?php echo $this->theme_slug; ?>
_license_key" name="<?php echo $this->theme_slug; ?>
_license_key" type="text" class="regular-text" value=""
placeholder="<?php echo $strings["\145\x6e\x74\x65\x72\x2d\153\145\x79"]; ?>
"/><input type="submit" class="button button-primary" name="submit"
value="<?php echo esc_attr($strings["\x61\143\x74\151\x76\141\x74\145\x2d\x6c\x69\143\145\x6e\x73\145"]); ?>
"/></p>
<p class="firstinfo"><span class="description"><span
class="exthemes-wp-license-bad"> <?php echo $message; ?>
</span></span></p>
<?php } ?>
</form>
<?php if ($license) {
if (in_array($status, array("\x76\x61\154\151\x64"))) {
} elseif (in_array($status, array("\x73\x69\164\x65\137\x69\x6e\x61\143\164\151\x76\x65"))) {
} else {
}
} else { ?>
<div class="card2">
<h2 class="firstinfo2" style=" text-shadow: 1px 1px white;">How to Get a License Key <b
style="color: blue;text-transform: uppercase;"><?php echo THEMES_NAMES; ?>
</b> v.<?php echo EXTHEMES_VERSION; ?>
Wordpress Themes?</h2>
<p class="firstinfo2">
<ol class="firstinfo2" style="color:#a94442; text-shadow: 1px 1px white;">
<li>if You ALREADY Buy , <i class="fa fa-hand-o-right" style="color:#3c763d"></i> <b><a
href="<?php echo EXTHEMES_MEMBER_URL; ?>
" target="_blank">Login to the member area</a></b></li>
<li>if You Forget License Key , <i class="fa fa-hand-o-right" style="color:#3c763d"></i>
<b><a href="<?php echo EXTHEMES_HOW_TO; ?>
" target="_blank">See My License Key</a></b></li>
<li>if You haven't bought yet , <i class="fa fa-hand-o-right" style="color:#3c763d"></i>
<b><a href="<?php echo EXTHEMES_ITEMS_URL; ?>
" target="_blank">Buy <?php echo EXTHEMES_NAME; ?>
</a></b></li>
</ol>
</p>
</div>
<?php } ?>
</div>
<div class="col col-complementary" role="complementary">
<?php echo file_get_contents(WEBSCHANGELOGS); ?>
</div>
</div>
</div>
<?php }
Function Calls
None |
Stats
MD5 | bcbe47de9e5b26cdfbbadafbe9cddf8f |
Eval Count | 0 |
Decode Time | 85 ms |