This commit is contained in:
2024-05-20 15:37:46 +03:00
commit 00b7dbd0b7
10404 changed files with 3285853 additions and 0 deletions

View File

@ -0,0 +1,54 @@
<?php
/**
* @package Freemius
* @copyright Copyright (c) 2015, Freemius, Inc.
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
* @since 2.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* @var array $VARS
* @var Freemius $fs
* @var FS_Plugin_License $available_license
* @var string $slug
*/
$fs = $VARS['freemius'];
$available_license = $VARS['license'];
$premium_plan = $VARS['plan'];
$slug = $VARS['slug'];
$blog_id = ! empty( $VARS['blog_id'] ) && is_numeric( $VARS['blog_id'] ) ?
$VARS['blog_id'] :
'';
$install_id = ! empty( $VARS['install_id'] ) && FS_Site::is_valid_id( $VARS['install_id'] ) ?
$VARS['install_id'] :
'';
$activate_plan_text = fs_text_inline( 'Activate %s Plan', 'activate-x-plan', $slug );
$action = 'activate_license';
?>
<form action="<?php echo $fs->_get_admin_page_url( 'account' ) ?>" method="POST">
<input type="hidden" name="fs_action" value="<?php echo $action ?>">
<?php wp_nonce_field( trim("{$action}:{$blog_id}:{$install_id}", ':') ) ?>
<input type="hidden" name="install_id" value="<?php echo $install_id ?>">
<input type="hidden" name="blog_id" value="<?php echo $blog_id ?>">
<input type="hidden" name="license_id" value="<?php echo $available_license->id ?>">
<input type="submit" class="fs-activate-license button<?php echo ! empty( $VARS['class'] ) ? ' ' . $VARS['class'] : '' ?>"
value="<?php echo esc_attr( sprintf(
$activate_plan_text . '%s',
$premium_plan->title,
( $VARS['is_localhost'] && $available_license->is_free_localhost ) ?
' [' . fs_text_inline( 'Localhost', 'localhost', $slug ) . ']' :
( $available_license->is_single_site() ?
'' :
' [' . ( 1 < $available_license->left() ?
sprintf( fs_text_x_inline( '%s left', 'as 5 licenses left', 'x-left', $slug ), $available_license->left() ) :
strtolower( fs_text_inline( 'Last license', 'last-license', $slug ) ) ) . ']'
)
) ) ?> ">
</form>

View File

@ -0,0 +1,451 @@
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* @var array $VARS
* @var Freemius $fs
*/
$fs = $VARS['parent_fs'];
$addon_id = $VARS['addon_id'];
$odd = $VARS['odd'];
$slug = $fs->get_slug();
$fs_blog_id = $VARS['fs_blog_id'];
$active_plugins_directories_map = $VARS['active_plugins_directories_map'];
$addon_info = $VARS['addon_info'];
$is_addon_activated = $fs->is_addon_activated( $addon_id );
$is_addon_connected = $addon_info['is_connected'];
$is_addon_installed = $VARS['is_addon_installed'];
$fs_addon = ( $is_addon_connected && $is_addon_installed ) ?
freemius( $addon_id ) :
false;
// Aliases.
$download_latest_text = fs_text_x_inline( 'Download Latest', 'as download latest version', 'download-latest', $slug );
$downgrading_plan_text = fs_text_inline( 'Downgrading your plan', 'downgrading-plan', $slug );
$cancelling_subscription_text = fs_text_inline( 'Cancelling the subscription', 'cancelling-subscription', $slug );
/* translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription' */
$downgrade_x_confirm_text = fs_text_inline( '%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s.', 'downgrade-x-confirm', $slug );
$prices_increase_text = fs_text_inline( 'Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price.', 'pricing-increase-warning', $slug );
$cancel_trial_confirm_text = fs_text_inline( 'Cancelling the trial will immediately block access to all premium features. Are you sure?', 'cancel-trial-confirm', $slug );
$after_downgrade_non_blocking_text = fs_text_inline( 'You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support.', 'after-downgrade-non-blocking', $slug );
$after_downgrade_blocking_text = fs_text_inline( 'Once your license expires you can still use the Free version but you will NOT have access to the %s features.', 'after-downgrade-blocking', $slug );
/* translators: %s: Plan title (e.g. "Professional") */
$activate_plan_text = fs_text_inline( 'Activate %s Plan', 'activate-x-plan', $slug );
$version_text = fs_text_x_inline( 'Version', 'product version', 'version', $slug );
/* translators: %s: Time period (e.g. Auto renews in "2 months") */
$renews_in_text = fs_text_inline( 'Auto renews in %s', 'renews-in', $slug );
/* translators: %s: Time period (e.g. Expires in "2 months") */
$expires_in_text = fs_text_inline( 'Expires in %s', 'expires-in', $slug );
$cancel_trial_text = fs_text_inline( 'Cancel Trial', 'cancel-trial', $slug );
$change_plan_text = fs_text_inline( 'Change Plan', 'change-plan', $slug );
$upgrade_text = fs_text_x_inline( 'Upgrade', 'verb', 'upgrade', $slug );
$addons_text = fs_text_inline( 'Add-Ons', 'add-ons', $slug );
$downgrade_text = fs_text_x_inline( 'Downgrade', 'verb', 'downgrade', $slug );
$trial_text = fs_text_x_inline( 'Trial', 'trial period', 'trial', $slug );
$free_text = fs_text_inline( 'Free', 'free', $slug );
$activate_text = fs_text_inline( 'Activate', 'activate', $slug );
$plan_text = fs_text_x_inline( 'Plan', 'as product pricing plan', 'plan', $slug );
// Defaults.
$plan = null;
$is_paid_trial = false;
/**
* @var FS_Plugin_License $license
*/
$license = null;
$site = null;
$is_active_subscription = false;
$subscription = null;
$is_paying = false;
$show_upgrade = false;
$is_whitelabeled = $VARS['is_whitelabeled'];
if ( is_object( $fs_addon ) ) {
$is_paying = $fs_addon->is_paying();
$user = $fs_addon->get_user();
$site = $fs_addon->get_site();
$license = $fs_addon->_get_license();
$subscription = ( is_object( $license ) ?
$fs_addon->_get_subscription( $license->id ) :
null );
$plan = $fs_addon->get_plan();
$plan_name = $plan->name;
$plan_title = $plan->title;
$is_paid_trial = $fs_addon->is_paid_trial();
$version = $fs_addon->get_plugin_version();
$is_whitelabeled = (
$fs_addon->is_whitelabeled( true ) &&
! $fs_addon->get_parent_instance()->is_data_debug_mode()
);
$show_upgrade = (
! $is_whitelabeled &&
$fs_addon->has_paid_plan() &&
! $is_paying &&
! $is_paid_trial &&
! $fs_addon->_has_premium_license()
);
} else if ( $is_addon_connected ) {
if (
empty( $addon_info ) ||
! isset( $addon_info['site'] )
) {
$is_addon_connected = false;
} else {
/**
* @var FS_Site $site
*/
$site = $addon_info['site'];
$version = $addon_info['version'];
$plan_name = isset( $addon_info['plan_name'] ) ?
$addon_info['plan_name'] :
'';
$plan_title = isset( $addon_info['plan_title'] ) ?
$addon_info['plan_title'] :
'';
if ( isset( $addon_info['license'] ) ) {
$license = $addon_info['license'];
}
if ( isset( $addon_info['subscription'] ) ) {
$subscription = $addon_info['subscription'];
}
$has_valid_and_active_license = (
is_object( $license ) &&
$license->is_active() &&
$license->is_valid()
);
$is_paid_trial = (
$site->is_trial() &&
$has_valid_and_active_license &&
( $site->trial_plan_id == $license->plan_id )
);
$is_whitelabeled = $addon_info['is_whitelabeled'];
}
}
$has_feature_enabled_license = (
is_object( $license ) &&
$license->is_features_enabled()
);
$is_active_subscription = ( is_object( $subscription ) && $subscription->is_active() );
$show_delete_install_button = ( ! $is_paying && WP_FS__DEV_MODE && ! $is_whitelabeled );
?>
<tr<?php if ( $odd ) {
echo ' class="alternate"';
} ?>>
<td>
<!-- Title -->
<?php echo $addon_info['title'] ?>
</td>
<?php if ( $is_addon_connected ) : ?>
<!-- ID -->
<td><?php echo $site->id ?></td>
<!--/ ID -->
<!-- Version -->
<td><?php echo $version ?></td>
<!--/ Version -->
<!-- Plan Title -->
<td><?php echo strtoupper( is_string( $plan_name ) ? $plan_title : $free_text ) ?></td>
<!--/ Plan Title -->
<!-- Expiration -->
<td>
<?php if ( $site->is_trial() || is_object( $license ) ) : ?>
<?php
$tags = array();
if ( $site->is_trial() ) {
$tags[] = array( 'label' => $trial_text, 'type' => 'success' );
$tags[] = array(
'label' => sprintf(
( $is_paid_trial ?
$renews_in_text :
$expires_in_text ),
human_time_diff( time(), strtotime( $site->trial_ends ) )
),
'type' => ( $is_paid_trial ? 'success' : 'warn' )
);
} else {
if ( is_object( $license ) ) {
if ( $license->is_cancelled ) {
$tags[] = array(
'label' => fs_text_inline( 'Cancelled', 'cancelled', $slug ),
'type' => 'error'
);
} else if ( $license->is_expired() ) {
$tags[] = array(
'label' => fs_text_inline( 'Expired', 'expired', $slug ),
'type' => 'error'
);
} else if ( $license->is_lifetime() ) {
$tags[] = array(
'label' => fs_text_inline( 'No expiration', 'no-expiration', $slug ),
'type' => 'success'
);
} else if ( ! $is_active_subscription && ! $license->is_first_payment_pending() ) {
$tags[] = array(
'label' => sprintf( $expires_in_text, human_time_diff( time(), strtotime( $license->expiration ) ) ),
'type' => 'warn'
);
} else if ( $is_active_subscription && ! $subscription->is_first_payment_pending() ) {
$tags[] = array(
'label' => sprintf( $renews_in_text, human_time_diff( time(), strtotime( $subscription->next_payment ) ) ),
'type' => 'success'
);
}
}
}
foreach ( $tags as $t ) {
printf( '<label class="fs-tag fs-%s">%s</label>' . "\n", $t['type'], $t['label'] );
}
?>
<?php endif ?>
</td>
<!--/ Expiration -->
<?php
$buttons = array();
$is_license_activation_added = false;
if ( $is_addon_activated ) {
if ( ! $is_whitelabeled ) {
if ( $is_paying ) {
$buttons[] = fs_ui_get_action_button(
$fs->get_id(),
'account',
'deactivate_license',
fs_text_inline( 'Deactivate License', 'deactivate-license', $slug ),
'',
array( 'plugin_id' => $addon_id ),
false,
true
);
$human_readable_license_expiration = human_time_diff( time(), strtotime( $license->expiration ) );
$downgrade_confirmation_message = sprintf(
$downgrade_x_confirm_text,
( $fs_addon->is_only_premium() ? $cancelling_subscription_text : $downgrading_plan_text ),
$plan->title,
$human_readable_license_expiration
);
$after_downgrade_message = ! $license->is_block_features ?
sprintf( $after_downgrade_non_blocking_text, $plan->title, $fs_addon->get_module_label( true ) ) :
sprintf( $after_downgrade_blocking_text, $plan->title );
if ( ! $license->is_lifetime() && $is_active_subscription ) {
$buttons[] = fs_ui_get_action_button(
$fs->get_id(),
'account',
'downgrade_account',
esc_html( $fs_addon->is_only_premium() ? fs_text_inline( 'Cancel Subscription', 'cancel-subscription', $slug ) : $downgrade_text ),
'',
array( 'plugin_id' => $addon_id ),
false,
false,
false,
( $downgrade_confirmation_message . ' ' . $after_downgrade_message . ' ' . $prices_increase_text ),
'POST'
);
}
} else if ( $is_paid_trial ) {
$buttons[] = fs_ui_get_action_button(
$fs->get_id(),
'account',
'cancel_trial',
esc_html( $cancel_trial_text ),
'',
array( 'plugin_id' => $addon_id ),
false,
false,
'dashicons dashicons-download',
$cancel_trial_confirm_text,
'POST'
);
} else if ( ! $has_feature_enabled_license ) {
$premium_licenses = $fs_addon->get_available_premium_licenses();
if ( ! empty( $premium_licenses ) ) {
$premium_license = $premium_licenses[0];
$has_multiple_premium_licenses = ( 1 < count( $premium_licenses ) );
if ( ! $has_multiple_premium_licenses ) {
$premium_plan = $fs_addon->_get_plan_by_id( $premium_license->plan_id );
$site = $fs_addon->get_site();
$buttons[] = fs_ui_get_action_button(
$fs->get_id(),
'account',
'activate_license',
esc_html( sprintf( $activate_plan_text, $premium_plan->title, ( $site->is_localhost() && $premium_license->is_free_localhost ) ? '[localhost]' : ( 1 < $premium_license->left() ? $premium_license->left() . ' left' : '' ) ) ),
($has_multiple_premium_licenses ?
'activate-license-trigger ' . $fs_addon->get_unique_affix() :
''),
array(
'plugin_id' => $addon_id,
'license_id' => $premium_license->id,
),
true,
true
);
$is_license_activation_added = true;
}
}
}
}
// if ( 0 == count( $buttons ) ) {
if ( $fs_addon->is_premium() && ! $is_license_activation_added ) {
$fs_addon->_add_license_activation_dialog_box();
$buttons[] = fs_ui_get_action_button(
$fs->get_id(),
'account',
'activate_license',
( ! $has_feature_enabled_license ) ?
fs_esc_html_inline( 'Activate License', 'activate-license', $slug ) :
fs_esc_html_inline( 'Change License', 'change-license', $slug ),
'activate-license-trigger ' . $fs_addon->get_unique_affix(),
array(
'plugin_id' => $addon_id,
),
(! $has_feature_enabled_license),
true
);
$is_license_activation_added = true;
}
if ( $fs_addon->has_paid_plan() ) {
// Add sync license only if non of the other CTAs are visible.
$buttons[] = fs_ui_get_action_button(
$fs->get_id(),
'account',
$fs->get_unique_affix() . '_sync_license',
fs_esc_html_x_inline( 'Sync', 'as synchronize', 'sync', $slug ),
'',
array( 'plugin_id' => $addon_id ),
false,
true
);
}
// }
} else if ( ! $show_upgrade ) {
if ( $fs->is_addon_installed( $addon_id ) ) {
$addon_file = $fs->get_addon_basename( $addon_id );
if ( ! isset( $active_plugins_directories_map[ dirname( $addon_file ) ] ) ) {
$buttons[] = sprintf(
'<a class="button button-primary edit" href="%s" title="%s">%s</a>',
wp_nonce_url( 'plugins.php?action=activate&amp;plugin=' . $addon_file, 'activate-plugin_' . $addon_file ),
fs_esc_attr_inline( 'Activate this add-on', 'activate-this-addon', $slug ),
$activate_text
);
}
} else {
if ( $fs->is_allowed_to_install() ) {
$buttons[] = sprintf(
'<a class="button button-primary edit" href="%s">%s</a>',
wp_nonce_url( self_admin_url( 'update.php?' . ( ( isset( $addon_info['has_paid_plan'] ) && $addon_info['has_paid_plan'] ) ? 'fs_allow_updater_and_dialog=true&' : '' ) . 'action=install-plugin&plugin=' . $addon_info['slug'] ), 'install-plugin_' . $addon_info['slug'] ),
fs_text_inline( 'Install Now', 'install-now', $slug )
);
} else {
$buttons[] = sprintf(
'<a target="_blank" rel="noopener" class="button button-primary edit" href="%s">%s</a>',
$fs->_get_latest_download_local_url( $addon_id ),
esc_html( $download_latest_text )
);
}
}
}
if ( $show_upgrade ) {
$buttons[] = sprintf( '<a href="%s" class="thickbox button button-small button-primary" aria-label="%s" data-title="%s"><i class="dashicons dashicons-cart"></i> %s</a>',
esc_url( network_admin_url( 'plugin-install.php?fs_allow_updater_and_dialog=true' . ( ! empty( $fs_blog_id ) ? '&fs_blog_id=' . $fs_blog_id : '' ) . '&tab=plugin-information&parent_plugin_id=' . $fs->get_id() . '&plugin=' . $addon_info['slug'] .
'&TB_iframe=true&width=600&height=550' ) ),
esc_attr( sprintf( fs_text_inline( 'More information about %s', 'more-information-about-x', $slug ), $addon_info['title'] ) ),
esc_attr( $addon_info['title'] ),
( $fs_addon->has_free_plan() ?
$upgrade_text :
fs_text_x_inline( 'Purchase', 'verb', 'purchase', $slug ) )
);
}
$buttons_count = count( $buttons );
?>
<!-- Actions -->
<td><?php if ( $buttons_count > 1 ) : ?>
<div class="button-group"><?php endif ?>
<?php foreach ( $buttons as $button ) {
echo $button;
} ?>
<?php if ( $buttons_count > 1 ) : ?></div><?php endif ?></td>
<!--/ Actions -->
<?php else : ?>
<?php // Add-on NOT Installed or was never connected.
$is_addon_installed_by_filesystem = $fs->is_addon_installed( $addon_id );
?>
<!-- Action -->
<td colspan="<?php echo ( $is_addon_installed_by_filesystem || $show_delete_install_button ) ? '5' : '4' ?>">
<?php if ( $is_addon_installed_by_filesystem ) : ?>
<?php $addon_file = $fs->get_addon_basename( $addon_id ) ?>
<?php if ( ! isset( $active_plugins_directories_map[ dirname( $addon_file ) ] ) ) : ?>
<a class="button button-primary"
href="<?php echo wp_nonce_url( 'plugins.php?action=activate&amp;plugin=' . $addon_file, 'activate-plugin_' . $addon_file ) ?>"
title="<?php fs_esc_attr_echo_inline( 'Activate this add-on', 'activate-this-addon', $slug ) ?>"
class="edit"><?php echo esc_html( $activate_text ) ?></a>
<?php endif ?>
<?php else : ?>
<?php if ( $fs->is_allowed_to_install() ) : ?>
<a class="button button-primary"
href="<?php echo wp_nonce_url( self_admin_url( 'update.php?' . ( ( isset( $addon_info['has_paid_plan'] ) && $addon_info['has_paid_plan'] ) ? 'fs_allow_updater_and_dialog=true&' : '' ) . 'action=install-plugin&plugin=' . $addon_info['slug'] ), 'install-plugin_' . $addon_info['slug'] ) ?>"><?php fs_esc_html_echo_inline( 'Install Now', 'install-now', $slug ) ?></a>
<?php else : ?>
<a target="_blank" rel="noopener" class="button button-primary"
href="<?php echo $fs->_get_latest_download_local_url( $addon_id ) ?>"><?php echo esc_html( $download_latest_text ) ?></a>
<?php endif ?>
<?php endif ?>
</td>
<!--/ Action -->
<?php endif ?>
<?php if ( $show_delete_install_button ) : ?>
<!-- Optional Delete Action -->
<td>
<?php
if ( $is_addon_activated ) {
fs_ui_action_button(
$fs->get_id(), 'account',
'delete_account',
fs_text_x_inline( 'Delete', 'verb', 'delete', $slug ),
'',
array( 'plugin_id' => $addon_id ),
false,
$show_upgrade
);
}
?>
</td>
<!--/ Optional Delete Action -->
<?php endif ?>
</tr>

View File

@ -0,0 +1,36 @@
<?php
/**
* @package Freemius
* @copyright Copyright (c) 2015, Freemius, Inc.
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
* @since 2.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* @var array $VARS
* @var Freemius $fs
* @var string $slug
*/
$slug = $VARS['slug'];
$fs = $VARS['freemius'];
$blog_id = ! empty( $VARS['blog_id'] ) && is_numeric( $VARS['blog_id'] ) ?
$VARS['blog_id'] :
'';
$install_id = ! empty( $VARS['install_id'] ) && FS_Site::is_valid_id( $VARS['install_id'] ) ?
$VARS['install_id'] :
'';
$action = 'deactivate_license';
?>
<form action="<?php echo $fs->_get_admin_page_url( 'account' ) ?>" method="POST">
<input type="hidden" name="fs_action" value="<?php echo $action ?>">
<?php wp_nonce_field( trim("{$action}:{$blog_id}:{$install_id}", ':') ) ?>
<input type="hidden" name="install_id" value="<?php echo $install_id ?>">
<input type="hidden" name="blog_id" value="<?php echo $blog_id ?>">
<button type="button" class="fs-deactivate-license button<?php echo ! empty( $VARS['class'] ) ? ' ' . $VARS['class'] : '' ?>"><?php fs_echo_inline( 'Deactivate License', 'deactivate-license', $slug ) ?></button>
</form>

View File

@ -0,0 +1,3 @@
<?php
// Silence is golden.
// Hide file structure from users on unprotected servers.

View File

@ -0,0 +1,352 @@
<?php
/**
* @package Freemius
* @copyright Copyright (c) 2015, Freemius, Inc.
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
* @since 2.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* @var array $VARS
* @var Freemius $fs
* @var FS_Plugin_License $main_license
*/
$fs = $VARS['freemius'];
$slug = $fs->get_slug();
$site = $VARS['site'];
$main_license = $VARS['license'];
$is_data_debug_mode = $fs->is_data_debug_mode();
$is_whitelabeled = $fs->is_whitelabeled();
$has_paid_plan = $fs->has_paid_plan();
$is_premium = $fs->is_premium();
$main_user = $fs->get_user();
$blog_id = $site['blog_id'];
$install = $VARS['install'];
$is_registered = ! empty( $install );
$license = null;
$trial_plan = $fs->get_trial_plan();
$free_text = fs_text_inline( 'Free', 'free', $slug );
if ( $is_whitelabeled && $fs->is_delegated_connection( $blog_id ) ) {
$is_whitelabeled = $fs->is_whitelabeled( true, $blog_id );
}
?>
<tr class="fs-site-details" data-blog-id="<?php echo $blog_id ?>"<?php if ( $is_registered ) : ?> data-install-id="<?php echo $install->id ?>"<?php endif ?>>
<!-- Install ID or Opt-in option -->
<td><?php if ( $is_registered ) : ?>
<?php echo $install->id ?>
<?php else : ?>
<?php $action = 'opt_in' ?>
<form action="<?php echo $fs->_get_admin_page_url( 'account' ) ?>" method="POST">
<input type="hidden" name="fs_action" value="<?php echo $action ?>">
<?php wp_nonce_field( trim( "{$action}:{$blog_id}", ':' ) ) ?>
<input type="hidden" name="blog_id" value="<?php echo $blog_id ?>">
<button class="fs-opt-in button button-small"><?php fs_esc_html_echo_inline( 'Opt In', 'opt-in', $slug ) ?></button>
</form>
<?php endif ?>
</td>
<!--/ Install ID or Opt-in option -->
<!-- Site URL -->
<td class="fs-field-url fs-main-column"><?php echo fs_strip_url_protocol( $site['url'] ) ?></td>
<!--/ Site URL -->
<!-- License Activation / Deactivation -->
<td><?php if ( $has_paid_plan ) {
$view_params = array(
'freemius' => $fs,
'slug' => $slug,
'blog_id' => $blog_id,
'class' => 'button-small',
);
$license = null;
if ( $is_registered ) {
$view_params['install_id'] = $install->id;
$view_params['is_localhost'] = $install->is_localhost();
$has_license = FS_Plugin_License::is_valid_id( $install->license_id );
$license = $has_license ?
$fs->_get_license_by_id( $install->license_id ) :
null;
} else {
$view_params['is_localhost'] = FS_Site::is_localhost_by_address( $site['url'] );
}
if ( ! $is_whitelabeled ) {
if ( is_object( $license ) ) {
$view_params['license'] = $license;
// Show license deactivation button.
fs_require_template( 'account/partials/deactivate-license-button.php', $view_params );
} else {
if ( is_object( $main_license ) && $main_license->can_activate( $view_params['is_localhost'] ) ) {
// Main license is available for activation.
$available_license = $main_license;
} else {
// Try to find any available license for activation.
$available_license = $fs->_get_available_premium_license( $view_params['is_localhost'] );
}
if ( is_object( $available_license ) ) {
$premium_plan = $fs->_get_plan_by_id( $available_license->plan_id );
$view_params['license'] = $available_license;
$view_params['class'] .= ' button-primary';
$view_params['plan'] = $premium_plan;
fs_require_template( 'account/partials/activate-license-button.php', $view_params );
}
}
}
} ?></td>
<!--/ License Activation / Deactivation -->
<!-- Plan -->
<td><?php if ( $is_registered ) : ?>
<?php
if ( ! $has_paid_plan ) {
$plan_title = $free_text;
} else {
if ( $install->is_trial() ) {
if ( is_object( $trial_plan ) && $trial_plan->id == $install->trial_plan_id ) {
$plan_title = is_string( $trial_plan->name ) ?
strtoupper( $trial_plan->title ) :
fs_text_inline( 'Trial', 'trial', $slug );
} else {
$plan_title = fs_text_inline( 'Trial', 'trial', $slug );
}
} else {
$plan = $fs->_get_plan_by_id( $install->plan_id );
$plan_title = strtoupper( is_string( $plan->title ) ?
$plan->title :
strtoupper( $free_text )
);
}
}
?>
<code><?php echo $plan_title ?></code>
<?php endif ?></td>
<!--/ Plan -->
<!-- More details button -->
<td><?php if ( $is_registered ) : ?>
<button class="fs-show-install-details button button-small">More details <i
class="dashicons dashicons-arrow-right-alt2"></i>
</button><?php endif ?></td>
<!--/ More details button -->
</tr>
<?php if ( $is_registered ) : ?>
<!-- More details -->
<tr class="fs-install-details" data-install-id="<?php echo $install->id ?>" style="display: none">
<td colspan="5">
<table class="widefat fs-key-value-table">
<tbody>
<?php $row_index = 0 ?>
<!-- Blog ID -->
<tr <?php if ( 1 == $row_index % 2 ) {
echo ' class="alternate"';
} ?>>
<td>
<nobr><?php fs_esc_html_echo_inline( 'Blog ID', 'blog-id', $slug ) ?>:</nobr>
</td>
<td><code><?php echo $blog_id ?></code></td>
<td><?php if ( ! FS_Plugin_License::is_valid_id( $install->license_id ) ) : ?>
<!-- Toggle Usage Tracking -->
<?php $action = 'toggle_tracking' ?>
<form action="<?php echo $fs->_get_admin_page_url( 'account' ) ?>" method="POST">
<input type="hidden" name="fs_action" value="<?php echo $action ?>">
<?php wp_nonce_field( trim( "{$action}:{$blog_id}:{$install->id}", ':' ) ) ?>
<input type="hidden" name="install_id" value="<?php echo $install->id ?>">
<input type="hidden" name="blog_id" value="<?php echo $blog_id ?>">
<button class="fs-toggle-tracking button button-small<?php if ( $install->is_disconnected ) {
echo ' button-primary';
} ?>" data-is-disconnected="<?php echo $install->is_disconnected ? 'true' : 'false' ?>"><?php $install->is_disconnected ? fs_esc_html_echo_inline( 'Opt In', 'opt-in', $slug ) : fs_esc_html_echo_inline( 'Opt Out', 'opt-out', $slug ) ?></button>
</form>
<!--/ Toggle Usage Tracking -->
<?php endif ?></td>
</tr>
<?php $row_index ++ ?>
<!--/ Blog ID -->
<?php if ( $is_registered && $install->user_id != $main_user->id ) : ?>
<?php
/**
* @var FS_User $user
*/
$user = Freemius::_get_user_by_id( $install->user_id ) ?>
<?php if ( is_object( $user ) ) : ?>
<!-- User Name -->
<tr <?php if ( 1 == $row_index % 2 ) {
echo ' class="alternate"';
} ?>>
<td>
<nobr><?php fs_esc_html_echo_inline( 'Owner Name', 'owner-name', $slug ) ?>:</nobr>
</td>
<td colspan="2"><code><?php echo htmlspecialchars( $user->get_name() ) ?></code></td>
</tr>
<?php $row_index ++ ?>
<!--/ User Name -->
<!-- User Email -->
<tr <?php if ( 1 == $row_index % 2 ) {
echo ' class="alternate"';
} ?>>
<td>
<nobr><?php fs_esc_html_echo_inline( 'Owner Email', 'owner-email', $slug ) ?>:</nobr>
</td>
<td colspan="2"><code><?php echo htmlspecialchars( $user->email ) ?></code></td>
</tr>
<?php $row_index ++ ?>
<!--/ User Email -->
<!-- User ID -->
<tr <?php if ( 1 == $row_index % 2 ) {
echo ' class="alternate"';
} ?>>
<td>
<nobr><?php fs_esc_html_echo_inline( 'Owner ID', 'owner-id', $slug ) ?>:</nobr>
</td>
<td colspan="2"><code><?php echo $user->id ?></code></td>
</tr>
<?php $row_index ++ ?>
<!--/ User ID -->
<?php endif ?>
<?php endif ?>
<!-- Public Key -->
<tr <?php if ( 1 == $row_index % 2 ) {
echo ' class="alternate"';
} ?>>
<td>
<nobr><?php fs_esc_html_echo_inline( 'Public Key', 'public-key', $slug ) ?>:</nobr>
</td>
<td colspan="2"><code><?php echo htmlspecialchars( $install->public_key ) ?></code></td>
</tr>
<?php $row_index ++ ?>
<!--/ Public Key -->
<!-- Secret Key -->
<tr <?php if ( 1 == $row_index % 2 ) {
echo ' class="alternate"';
} ?>>
<td>
<nobr><?php fs_esc_html_echo_inline( 'Secret Key', 'secret-key', $slug ) ?>:</nobr>
</td>
<td>
<code><?php echo FS_Plugin_License::mask_secret_key_for_html( $install->secret_key ) ?></code>
<?php if ( ! $is_whitelabeled ) : ?>
<input type="text" value="<?php echo htmlspecialchars( $install->secret_key ) ?>"
style="display: none" readonly/></td>
<?php endif ?>
<?php if ( ! $is_whitelabeled ) : ?>
<td><button class="button button-small fs-toggle-visibility"><?php fs_esc_html_echo_x_inline( 'Show', 'verb', 'show', $slug ) ?></button></td>
<?php endif ?>
</tr>
<?php $row_index ++ ?>
<!--/ Secret Key -->
<?php if ( is_object( $license ) ) : ?>
<!-- License Key -->
<tr <?php if ( 1 == $row_index % 2 ) {
echo ' class="alternate"';
} ?>>
<td>
<nobr><?php fs_esc_html_echo_inline( 'License Key', 'license-key', $slug ) ?>:</nobr>
</td>
<td>
<code><?php echo $license->get_html_escaped_masked_secret_key() ?></code>
<?php if ( ! $is_whitelabeled ) : ?>
<input type="text" value="<?php echo htmlspecialchars( $license->secret_key ) ?>"
style="display: none" readonly/></td>
<?php endif ?>
<?php if ( ! $is_whitelabeled ) : ?>
<td>
<button class="button button-small fs-toggle-visibility"><?php fs_esc_html_echo_x_inline( 'Show', 'verb', 'show', $slug ) ?></button>
<button class="button button-small activate-license-trigger <?php echo $fs->get_unique_affix() ?>"><?php fs_esc_html_echo_inline( 'Change License', 'change-license', $slug ) ?></button>
</td>
<?php endif ?>
</tr>
<?php $row_index ++ ?>
<!--/ License Key -->
<?php if ( ! is_object( $main_license ) || $main_license->id != $license->id ) : ?>
<?php $subscription = $fs->_get_subscription( $license->id ) ?>
<?php if ( ! $license->is_lifetime() && is_object( $subscription ) ) : ?>
<!-- Subscription -->
<tr <?php if ( 1 == $row_index % 2 ) {
echo ' class="alternate"';
} ?>>
<td>
<nobr><?php fs_esc_html_echo_inline( 'Subscription', 'subscription', $slug ) ?>:</nobr>
</td>
<?php
$is_active_subscription = $subscription->is_active();
$renews_in_text = fs_text_inline( 'Auto renews in %s', 'renews-in', $slug );
/* translators: %s: Time period (e.g. Expires in "2 months") */
$expires_in_text = fs_text_inline( 'Expires in %s', 'expires-in', $slug );
?>
<td>
<code><?php echo $subscription->id ?> - <?php
echo ( 12 == $subscription->billing_cycle ?
_fs_text_inline( 'Annual', 'annual', $slug ) :
_fs_text_inline( 'Monthly', 'monthly', $slug )
);
?>
</code>
<?php if ( ! $is_active_subscription && ! $license->is_first_payment_pending() ) : ?>
<label class="fs-tag fs-warn"><?php echo esc_html( sprintf( $expires_in_text, human_time_diff( time(), strtotime( $license->expiration ) ) ) ) ?></label>
<?php elseif ( $is_active_subscription && ! $subscription->is_first_payment_pending() ) : ?>
<label class="fs-tag fs-success"><?php echo esc_html( sprintf( $renews_in_text, human_time_diff( time(), strtotime( $subscription->next_payment ) ) ) ) ?></label>
<?php endif ?>
</td>
<td><?php if ( $is_active_subscription ) : ?>
<?php
$downgrading_plan_text = fs_text_inline( 'Downgrading your plan', 'downgrading-plan', $slug );
$cancelling_subscription_text = fs_text_inline( 'Cancelling the subscription', 'cancelling-subscription', $slug );
/* translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription' */
$downgrade_x_confirm_text = fs_text_inline( '%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s.', 'downgrade-x-confirm', $slug );
$prices_increase_text = fs_text_inline( 'Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price.', 'pricing-increase-warning', $slug );
$after_downgrade_non_blocking_text = fs_text_inline( 'You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support.', 'after-downgrade-non-blocking', $slug );
$after_downgrade_blocking_text = fs_text_inline( 'Once your license expires you can still use the Free version but you will NOT have access to the %s features.', 'after-downgrade-blocking', $slug );
$downgrade_text = fs_text_x_inline( 'Downgrade', 'verb', 'downgrade', $slug );
$human_readable_license_expiration = human_time_diff( time(), strtotime( $license->expiration ) );
$downgrade_confirmation_message = sprintf(
$downgrade_x_confirm_text,
( $fs->is_only_premium() ? $cancelling_subscription_text : $downgrading_plan_text ),
$plan->title,
$human_readable_license_expiration
);
$after_downgrade_message = ! $license->is_block_features ?
sprintf( $after_downgrade_non_blocking_text, $plan->title, $fs->get_module_label( true ) ) :
sprintf( $after_downgrade_blocking_text, $plan->title );
?>
<?php $action = 'downgrade_account' ?>
<form id="fs_downgrade" action="<?php echo $fs->_get_admin_page_url( 'account' ) ?>" method="POST">
<input type="hidden" name="fs_action" value="<?php echo $action ?>">
<?php wp_nonce_field( trim( "{$action}:{$blog_id}", ':' ) ) ?>
<input type="hidden" name="blog_id" value="<?php echo $blog_id ?>">
<button class="button button-small" onclick="if (confirm('<?php echo esc_attr( $downgrade_confirmation_message . ' ' . $after_downgrade_message . ' ' . $prices_increase_text ) ?>')) { this.parentNode.submit(); } else { return false; }"><?php echo $downgrade_text ?></button>
</form>
<?php endif ?></td>
</tr>
<?php $row_index ++ ?>
<?php endif ?>
<!--/ Subscription -->
<?php endif ?>
<?php endif ?>
</tbody>
</table>
</td>
</tr>
<!--/ More details -->
<?php endif ?>