PluginProbe
Buttonizer – Floating Menus, Sticky Buttons, & Popup Builder / 3.6.0
Buttonizer – Floating Menus, Sticky Buttons, & Popup Builder v3.6.0
3.6.0 3.5.0 trunk 1.0.10 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.6.1 1.0.7 1.0.8 1.0.9 1.1 1.1.1 1.2 1.3 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.5 1.5.1 All 110 releases
← All changes | freemius/templates/account.php +1120 -786 1.4.23.6.0 View file →
@@ -1,786 +1,1120 @@
1 -<?php
2 - /**
3 - * @package Freemius
4 - * @copyright Copyright (c) 2015, Freemius, Inc.
5 - * @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
6 - * @since 1.0.3
7 - */
8 -
9 - if ( ! defined( 'ABSPATH' ) ) {
10 - exit;
11 - }
12 -
13 - /**
14 - * @var array $VARS
15 - * @var Freemius $fs
16 - */
17 - $fs = freemius( $VARS['id'] );
18 -
19 - $slug = $fs->get_slug();
20 -
21 - /**
22 - * @var FS_Plugin_Tag $update
23 - */
24 - $update = $fs->get_update( false, false, WP_FS__TIME_24_HOURS_IN_SEC / 24 );
25 -
26 - $is_paying = $fs->is_paying();
27 - $user = $fs->get_user();
28 - $site = $fs->get_site();
29 - $name = $user->get_name();
30 - $license = $fs->_get_license();
31 - $subscription = $fs->_get_subscription();
32 - $plan = $fs->get_plan();
33 - $is_active_subscription = ( is_object( $subscription ) && $subscription->is_active() );
34 - $is_paid_trial = $fs->is_paid_trial();
35 - $show_upgrade = ( $fs->has_paid_plan() && ! $is_paying && ! $is_paid_trial );
36 -
37 - if ( $fs->has_paid_plan() ) {
38 - $fs->_add_license_activation_dialog_box();
39 - }
40 -
41 - if ( fs_request_get_bool( 'auto_install' ) ) {
42 - $fs->_add_auto_installation_dialog_box();
43 - }
44 -
45 - $has_tabs = $fs->_add_tabs_before_content();
46 -
47 - if ( $has_tabs ) {
48 - $query_params['tabs'] = 'true';
49 - }
50 -
51 - // Aliases.
52 - $download_latest_text = fs_text_x_inline( 'Download Latest', 'as download latest version', 'download-latest', $slug );
53 - $downgrade_x_confirm_text = fs_text_inline( 'Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s.', 'downgrade-x-confirm', $slug );
54 - $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 );
55 - $after_downgrade_non_blocking_text = fs_text_inline( 'You can still enjoy all %s features but you will not have access to %s updates and support.', 'after-downgrade-non-blocking', $slug );
56 - $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 );
57 - /* translators: %s: Plan title (e.g. "Professional") */
58 - $activate_plan_text = fs_text_inline( 'Activate %s Plan', 'activate-x-plan', $slug );
59 - $version_text = fs_text_x_inline( 'Version', 'product version', 'version', $slug );
60 - /* translators: %s: Time period (e.g. Auto renews in "2 months") */
61 - $renews_in_text = fs_text_inline( 'Auto renews in %s', 'renews-in', $slug );
62 - /* translators: %s: Time period (e.g. Expires in "2 months") */
63 - $expires_in_text = fs_text_inline( 'Expires in %s', 'expires-in', $slug );
64 - $sync_license_text = fs_text_x_inline( 'Sync License', 'as synchronize license', 'sync-license', $slug );
65 - $cancel_trial_text = fs_text_inline( 'Cancel Trial', 'cancel-trial', $slug );
66 - $change_plan_text = fs_text_inline( 'Change Plan', 'change-plan', $slug );
67 - $upgrade_text = fs_text_x_inline( 'Upgrade', 'verb', 'upgrade', $slug );
68 - $addons_text = fs_text_inline( 'Add-Ons', 'add-ons', $slug );
69 - $downgrade_text = fs_text_x_inline( 'Downgrade', 'verb', 'downgrade', $slug );
70 - $trial_text = fs_text_x_inline( 'Trial', 'trial period', 'trial', $slug );
71 - $free_text = fs_text_inline( 'Free', 'free', $slug );
72 - $activate_text = fs_text_inline( 'Activate', 'activate', $slug );
73 - $plan_text = fs_text_x_inline( 'Plan', 'as product pricing plan', 'plan', $slug );
74 -?>
75 - <div class="wrap fs-section">
76 - <?php if ( ! $has_tabs && ! $fs->apply_filters( 'hide_account_tabs', false ) ) : ?>
77 - <h2 class="nav-tab-wrapper">
78 - <a href="<?php echo $fs->get_account_url() ?>"
79 - class="nav-tab nav-tab-active"><?php fs_esc_html_echo_inline( 'Account', 'account', $slug ) ?></a>
80 - <?php if ( $fs->has_addons() ) : ?>
81 - <a href="<?php echo $fs->_get_admin_page_url( 'addons' ) ?>"
82 - class="nav-tab"><?php echo esc_html( $addons_text ) ?></a>
83 - <?php endif ?>
84 - <?php if ( $show_upgrade ) : ?>
85 - <a href="<?php echo $fs->get_upgrade_url() ?>" class="nav-tab"><?php echo esc_html( $upgrade_text ) ?></a>
86 - <?php if ( $fs->apply_filters( 'show_trial', true ) && ! $fs->is_trial_utilized() && $fs->has_trial_plan() ) : ?>
87 - <a href="<?php echo $fs->get_trial_url() ?>" class="nav-tab"><?php fs_esc_html_echo_inline( 'Free Trial', 'free-trial', $slug ) ?></a>
88 - <?php endif ?>
89 - <?php endif ?>
90 - </h2>
91 - <?php endif ?>
92 -
93 - <div id="poststuff">
94 - <div id="fs_account">
95 - <div class="has-sidebar has-right-sidebar">
96 - <div class="has-sidebar-content">
97 - <div class="postbox">
98 - <h3><span class="dashicons dashicons-businessman"></span> <?php fs_esc_html_echo_inline( 'Account Details', 'account-details', $slug ) ?></h3>
99 - <div class="fs-header-actions">
100 - <ul>
101 - <?php if ( ! $is_paying ) : ?>
102 - <li>
103 - <form action="<?php echo $fs->_get_admin_page_url( 'account' ) ?>" method="POST">
104 - <input type="hidden" name="fs_action" value="delete_account">
105 - <?php wp_nonce_field( 'delete_account' ) ?>
106 - <a href="#" onclick="if (confirm('<?php
107 - if ( $is_active_subscription ) {
108 - echo esc_attr( sprintf( fs_text_inline( 'Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the "Cancel" button, and first "Downgrade" your account. Are you sure you would like to continue with the deletion?', 'delete-account-x-confirm', $slug ), $plan->title ) );
109 - } else {
110 - echo esc_attr( sprintf( fs_text_inline( 'Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?', 'delete-account-confirm', $slug ), $fs->get_module_label( true ) ) );
111 - }
112 - ?>')) this.parentNode.submit(); return false;"><i
113 - class="dashicons dashicons-no"></i> <?php fs_esc_html_echo_inline( 'Delete Account', 'delete-account', $slug ) ?></a>
114 - </form>
115 - </li>
116 - <li>&nbsp;&bull;&nbsp;</li>
117 - <?php endif ?>
118 - <?php if ( $is_paying ) : ?>
119 - <li>
120 - <form action="<?php echo $fs->_get_admin_page_url( 'account' ) ?>" method="POST">
121 - <input type="hidden" name="fs_action" value="deactivate_license">
122 - <?php wp_nonce_field( 'deactivate_license' ) ?>
123 - <a href="#"
124 - onclick="if (confirm('<?php fs_esc_attr_echo_inline( 'Deactivating your license will block all premium features, but will enable you to activate the license on another site. Are you sure you want to proceed?', 'deactivate-license-confirm', $slug ) ?>')) this.parentNode.submit(); return false;"><i
125 - class="dashicons dashicons-admin-network"></i> <?php fs_echo_inline( 'Deactivate License', 'deactivate-license', $slug ) ?>
126 - </a>
127 - </form>
128 - </li>
129 - <li>&nbsp;&bull;&nbsp;</li>
130 - <?php if ( ! $license->is_lifetime() &&
131 - $is_active_subscription
132 - ) : ?>
133 - <li>
134 - <form action="<?php echo $fs->_get_admin_page_url( 'account' ) ?>" method="POST">
135 - <input type="hidden" name="fs_action" value="downgrade_account">
136 - <?php wp_nonce_field( 'downgrade_account' ) ?>
137 - <a href="#"
138 - onclick="if ( confirm('<?php echo esc_attr( sprintf( $downgrade_x_confirm_text, $plan->title, human_time_diff( time(), strtotime( $license->expiration ) ) ) ) ?> <?php if ( ! $license->is_block_features ) {
139 - echo esc_attr( sprintf( $after_downgrade_non_blocking_text, $plan->title, $fs->get_module_label( true ) ) );
140 - } else {
141 - echo esc_attr( sprintf( $after_downgrade_blocking_text, $plan->title ) );
142 - }?> <?php fs_esc_attr_echo_inline( 'Are you sure you want to proceed?', 'proceed-confirmation', $slug ) ?>') ) this.parentNode.submit(); return false;"><i class="dashicons dashicons-download"></i> <?php echo esc_html( $fs->is_only_premium() ? fs_text_inline( 'Cancel Subscription', 'cancel-subscription', $slug ) : $downgrade_text ) ?></a>
143 - </form>
144 - </li>
145 - <li>&nbsp;&bull;&nbsp;</li>
146 - <?php endif ?>
147 - <?php if ( ! $fs->is_single_plan() ) : ?>
148 - <li>
149 - <a href="<?php echo $fs->get_upgrade_url() ?>"><i
150 - class="dashicons dashicons-grid-view"></i> <?php echo esc_html( $change_plan_text ) ?></a>
151 - </li>
152 - <li>&nbsp;&bull;&nbsp;</li>
153 - <?php endif ?>
154 - <?php elseif ( $is_paid_trial ) : ?>
155 - <li>
156 - <form action="<?php echo $fs->_get_admin_page_url( 'account' ) ?>" method="POST">
157 - <input type="hidden" name="fs_action" value="cancel_trial">
158 - <?php wp_nonce_field( 'cancel_trial' ) ?>
159 - <a href="#"
160 - onclick="if (confirm('<?php echo esc_attr( $cancel_trial_confirm_text ) ?>')) this.parentNode.submit(); return false;"><i
161 - class="dashicons dashicons-download"></i> <?php echo esc_html( $cancel_trial_text ) ?></a>
162 - </form>
163 - </li>
164 - <li>&nbsp;&bull;&nbsp;</li>
165 - <?php endif ?>
166 - <li>
167 - <form action="<?php echo $fs->_get_admin_page_url( 'account' ) ?>" method="POST">
168 - <input type="hidden" name="fs_action" value="<?php echo $fs->get_unique_affix() ?>_sync_license">
169 - <?php wp_nonce_field( $fs->get_unique_affix() . '_sync_license' ) ?>
170 - <a href="#" onclick="this.parentNode.submit(); return false;"><i
171 - class="dashicons dashicons-image-rotate"></i> <?php fs_esc_html_echo_x_inline( 'Sync', 'as synchronize', 'sync', $slug ) ?></a>
172 - </form>
173 - </li>
174 -
175 - </ul>
176 - </div>
177 - <div class="inside">
178 - <table id="fs_account_details" cellspacing="0" class="fs-key-value-table">
179 - <?php
180 - $hide_license_key = $fs->apply_filters( 'hide_license_key', false );
181 -
182 - $profile = array();
183 - $profile[] = array(
184 - 'id' => 'user_name',
185 - 'title' => fs_text_inline( 'Name', 'name', $slug ),
186 - 'value' => $name
187 - );
188 - // if (isset($user->email) && false !== strpos($user->email, '@'))
189 - $profile[] = array(
190 - 'id' => 'email',
191 - 'title' => fs_text_inline( 'Email', 'email', $slug ),
192 - 'value' => $user->email
193 - );
194 -
195 - if ( is_numeric( $user->id ) ) {
196 - $profile[] = array(
197 - 'id' => 'user_id',
198 - 'title' => fs_text_inline( 'User ID', 'user-id', $slug ),
199 - 'value' => $user->id
200 - );
201 - }
202 -
203 - $profile[] = array(
204 - 'id' => 'site_id',
205 - 'title' => fs_text_inline( 'Site ID', 'site-id', $slug ),
206 - 'value' => is_string( $site->id ) ?
207 - $site->id :
208 - fs_text_inline( 'No ID', 'no-id', $slug )
209 - );
210 -
211 - $profile[] = array(
212 - 'id' => 'site_public_key',
213 - 'title' => fs_text_inline( 'Public Key', 'public-key', $slug ),
214 - 'value' => $site->public_key
215 - );
216 -
217 - $profile[] = array(
218 - 'id' => 'site_secret_key',
219 - 'title' => fs_text_inline( 'Secret Key', 'secret-key', $slug ),
220 - 'value' => ( ( is_string( $site->secret_key ) ) ?
221 - $site->secret_key :
222 - fs_text_x_inline( 'No Secret', 'as secret encryption key missing', 'no-secret', $slug )
223 - )
224 - );
225 -
226 - $profile[] = array(
227 - 'id' => 'version',
228 - 'title' => $version_text,
229 - 'value' => $fs->get_plugin_version()
230 - );
231 -
232 - if ( $fs->has_paid_plan() ) {
233 - if ( $fs->is_trial() ) {
234 - $trial_plan = $fs->get_trial_plan();
235 -
236 - $profile[] = array(
237 - 'id' => 'plan',
238 - 'title' => $plan_text,
239 - 'value' => ( is_string( $trial_plan->name ) ?
240 - strtoupper( $trial_plan->title ) :
241 - fs_text_inline( 'Trial', 'trial', $slug ) )
242 - );
243 - } else {
244 - $profile[] = array(
245 - 'id' => 'plan',
246 - 'title' => $plan_text,
247 - 'value' => strtoupper( is_string( $site->plan->name ) ?
248 - $site->plan->title :
249 - strtoupper( $free_text )
250 - )
251 - );
252 -
253 - if ( is_object( $license ) ) {
254 - if ( ! $hide_license_key ) {
255 - $profile[] = array(
256 - 'id' => 'license_key',
257 - 'title' => fs_text_inline( 'License Key', $slug ),
258 - 'value' => $license->secret_key,
259 - );
260 - }
261 - }
262 - }
263 - }
264 - ?>
265 - <?php $odd = true;
266 - foreach ( $profile as $p ) : ?>
267 - <?php
268 - if ( 'plan' === $p['id'] && ! $fs->has_paid_plan() ) {
269 - // If plugin don't have any paid plans, there's no reason
270 - // to show current plan.
271 - continue;
272 - }
273 - ?>
274 - <tr class="fs-field-<?php echo $p['id'] ?><?php if ( $odd ) : ?> alternate<?php endif ?>">
275 - <td>
276 - <nobr><?php echo $p['title'] ?>:</nobr>
277 - </td>
278 - <td<?php if ( 'plan' === $p['id'] ) { echo ' colspan="2"'; }?>>
279 - <?php if ( in_array( $p['id'], array( 'license_key', 'site_secret_key' ) ) ) : ?>
280 - <code><?php echo htmlspecialchars( substr( $p['value'], 0, 6 ) ) . str_pad( '', 23 * 6, '&bull;' ) . htmlspecialchars( substr( $p['value'], - 3 ) ) ?></code>
281 - <input type="text" value="<?php echo htmlspecialchars( $p['value'] ) ?>" style="display: none"
282 - readonly/>
283 - <?php else : ?>
284 - <code><?php echo htmlspecialchars( $p['value'] ) ?></code>
285 - <?php endif ?>
286 - <?php if ( 'email' === $p['id'] && ! $user->is_verified() ) : ?>
287 - <label class="fs-tag fs-warn"><?php fs_esc_html_echo_inline( 'not verified', 'not-verified', $slug ) ?></label>
288 - <?php endif ?>
289 - <?php if ( 'plan' === $p['id'] ) : ?>
290 - <?php if ( $fs->is_trial() ) : ?>
291 - <label class="fs-tag fs-success"><?php echo esc_html( $trial_text ) ?></label>
292 - <?php endif ?>
293 - <?php if ( is_object( $license ) && ! $license->is_lifetime() ) : ?>
294 - <?php if ( ! $is_active_subscription && ! $license->is_first_payment_pending() ) : ?>
295 - <label
296 - class="fs-tag fs-warn"><?php echo esc_html( sprintf( $expires_in_text, human_time_diff( time(), strtotime( $license->expiration ) ) ) ) ?></label>
297 - <?php elseif ( $is_active_subscription && ! $subscription->is_first_payment_pending() ) : ?>
298 - <label class="fs-tag fs-success"><?php echo esc_html( sprintf( $renews_in_text, human_time_diff( time(), strtotime( $subscription->next_payment ) ) ) ) ?></label>
299 - <?php endif ?>
300 - <?php elseif ( $fs->is_trial() ) : ?>
301 - <label class="fs-tag fs-warn"><?php echo esc_html( sprintf( $expires_in_text, human_time_diff( time(), strtotime( $site->trial_ends ) ) ) ) ?></label>
302 - <?php endif ?>
303 - <div class="button-group">
304 - <?php $available_license = $fs->is_free_plan() ? $fs->_get_available_premium_license() : false ?>
305 - <?php if ( false !== $available_license && ( $available_license->left() > 0 || ( $site->is_localhost() && $available_license->is_free_localhost ) ) ) : ?>
306 - <?php $premium_plan = $fs->_get_plan_by_id( $available_license->plan_id ) ?>
307 - <form action="<?php echo $fs->_get_admin_page_url( 'account' ) ?>"
308 - method="POST">
309 - <input type="hidden" name="fs_action" value="activate_license">
310 - <input type="hidden" name="license_id" value="<?php echo $available_license->id ?>">
311 - <?php wp_nonce_field( 'activate_license' ) ?>
312 - <input type="submit" class="button button-primary"
313 - value="<?php echo esc_attr( sprintf(
314 - $activate_plan_text . '%s',
315 - $premium_plan->title,
316 - ( $site->is_localhost() && $available_license->is_free_localhost ) ?
317 - ' [' . fs_text_inline( 'Localhost', 'localhost', $slug ) . ']' :
318 - ( $available_license->is_single_site() ?
319 - '' :
320 - ' [' . ( 1 < $available_license->left() ?
321 - sprintf( fs_text_x_inline( '%s left', 'as 5 licenses left', 'x-left', $slug ), $available_license->left() ) :
322 - strtolower( fs_text_inline( 'Last license', 'last-license', $slug ) ) ) . ']'
323 - )
324 - ) ) ?> ">
325 - </form>
326 - <?php else : ?>
327 - <form action="<?php echo $fs->_get_admin_page_url( 'account' ) ?>"
328 - method="POST" class="button-group">
329 - <?php if ( $show_upgrade && $fs->is_premium() ) : ?>
330 - <a class="button activate-license-trigger <?php echo $fs->get_unique_affix() ?>" href="#"><?php fs_esc_html_echo_inline( 'Activate License', 'activate-license', $slug ) ?></a>
331 - <?php endif ?>
332 - <input type="submit" class="button"
333 - value="<?php echo esc_attr( $sync_license_text ) ?>">
334 - <input type="hidden" name="fs_action"
335 - value="<?php echo $fs->get_unique_affix() ?>_sync_license">
336 - <?php wp_nonce_field( $fs->get_unique_affix() . '_sync_license' ) ?>
337 - <?php if ( $show_upgrade || ! $fs->is_single_plan() ) : ?>
338 - <a href="<?php echo $fs->get_upgrade_url() ?>"
339 - class="button<?php
340 - echo $show_upgrade ?
341 - ' button-primary fs-upgrade' :
342 - ' fs-change-plan'; ?> button-upgrade"><i
343 - class="dashicons dashicons-cart"></i> <?php echo esc_html( $show_upgrade ? $upgrade_text : $change_plan_text ) ?></a>
344 - <?php endif ?>
345 - </form>
346 - <?php endif ?>
347 - </div>
348 - <?php elseif ( 'version' === $p['id'] && $fs->has_paid_plan() ) : ?>
349 - <?php if ( $fs->has_premium_version() ) : ?>
350 - <?php if ( $fs->is_premium() ) : ?>
351 - <label
352 - class="fs-tag fs-<?php echo $fs->can_use_premium_code() ? 'success' : 'warn' ?>"><?php fs_esc_html_echo_inline( 'Premium version', 'premium-version', $slug ) ?></label>
353 - <?php elseif ( $fs->can_use_premium_code() ) : ?>
354 - <label class="fs-tag fs-warn"><?php fs_esc_html_echo_inline( 'Free version', 'free-version', $slug ) ?></label>
355 - <?php endif ?>
356 - <?php endif ?>
357 - <?php endif ?>
358 - </td>
359 - <?php if ( 'plan' !== $p['id'] ) : ?>
360 - <td class="fs-right">
361 - <?php if ( 'email' === $p['id'] && ! $user->is_verified() ) : ?>
362 - <form action="<?php echo $fs->_get_admin_page_url( 'account' ) ?>" method="POST">
363 - <input type="hidden" name="fs_action" value="verify_email">
364 - <?php wp_nonce_field( 'verify_email' ) ?>
365 - <input type="submit" class="button button-small"
366 - value="<?php fs_esc_attr_echo_inline( 'Verify Email', 'verify-email', $slug ) ?>">
367 - </form>
368 - <?php endif ?>
369 - <?php if ( 'version' === $p['id'] ) : ?>
370 - <?php if ( $fs->has_release_on_freemius() ) : ?>
371 - <div class="button-group">
372 - <?php if ( $is_paying || $fs->is_trial() ) : ?>
373 - <?php if ( ! $fs->is_allowed_to_install() ) : ?>
374 - <a target="_blank" class="button button-primary"
375 - href="<?php echo $fs->_get_latest_download_local_url() ?>"><?php echo sprintf(
376 - /* translators: %s: plan name (e.g. Download "Professional" Version) */
377 - fs_text_inline( 'Download %s Version', 'download-x-version', $slug ),
378 - ( $fs->is_trial() ? $trial_plan->title : $site->plan->title ) ) . ( is_object( $update ) ? ' [' . $update->version . ']' : '' ) ?></a>
379 - <?php elseif ( is_object( $update ) ) : ?>
380 - <?php
381 - $module_type = $fs->get_module_type();
382 - ?>
383 - <a class="button button-primary"
384 - href="<?php echo wp_nonce_url( self_admin_url( "update.php?action=upgrade-{$module_type}&{$module_type}=" . $fs->get_plugin_basename() ), "upgrade-{$module_type}_" . $fs->get_plugin_basename() ) ?>"><?php echo fs_esc_html_inline( 'Install Update Now', 'install-update-now', $slug ) . ' [' . $update->version . ']' ?></a>
385 - <?php endif ?>
386 - <?php endif; ?>
387 - </div>
388 - <?php endif ?>
389 - <?php
390 - elseif ( in_array( $p['id'], array( 'license_key', 'site_secret_key' ) ) ) : ?>
391 - <button class="button button-small fs-toggle-visibility"><?php fs_esc_html_echo_x_inline( 'Show', 'verb', 'show', $slug ) ?></button>
392 - <?php if ('license_key' === $p['id']) : ?>
393 - <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>
394 - <?php endif ?>
395 - <?php
396 - elseif (/*in_array($p['id'], array('site_secret_key', 'site_id', 'site_public_key')) ||*/
397 - ( is_string( $user->secret_key ) && in_array( $p['id'], array(
398 - 'email',
399 - 'user_name'
400 - ) ) )
401 - ) : ?>
402 - <form action="<?php echo $fs->_get_admin_page_url( 'account' ) ?>" method="POST"
403 - onsubmit="var val = prompt('<?php echo esc_attr( sprintf(
404 - /* translators: %s: User's account property (e.g. name, email) */
405 - fs_text_inline( 'What is your %s?', 'what-is-your-x', $slug ),
406 - $p['title']
407 - ) ) ?>', '<?php echo $p['value'] ?>'); if (null == val || '' === val) return false; jQuery('input[name=fs_<?php echo $p['id'] ?>_<?php echo $fs->get_unique_affix() ?>]').val(val); return true;">
408 - <input type="hidden" name="fs_action" value="update_<?php echo $p['id'] ?>">
409 - <input type="hidden" name="fs_<?php echo $p['id'] ?>_<?php echo $fs->get_unique_affix() ?>"
410 - value="">
411 - <?php wp_nonce_field( 'update_' . $p['id'] ) ?>
412 - <input type="submit" class="button button-small"
413 - value="<?php echo fs_esc_attr_x_inline( 'Edit', 'verb', 'edit', $slug ) ?>">
414 - </form>
415 - <?php endif ?>
416 - </td>
417 - <?php endif ?>
418 - </tr>
419 - <?php $odd = ! $odd;
420 - endforeach ?>
421 - </table>
422 - </div>
423 - </div>
424 - <script type="text/javascript">
425 - (function ($) {
426 - $('.fs-toggle-visibility').click(function () {
427 - var
428 - $this = $(this),
429 - $parent = $this.closest('tr'),
430 - $input = $parent.find('input');
431 -
432 - $parent.find('code').toggle();
433 - $input.toggle();
434 -
435 - if ($input.is(':visible')) {
436 - $this.html('<?php fs_esc_js_echo_x_inline( 'Hide', 'verb', 'hide', $slug ) ?>');
437 - setTimeout(function () {
438 - $input.select().focus();
439 - }, 100);
440 - }
441 - else {
442 - $this.html( '<?php fs_esc_js_echo_x_inline( 'Show', 'verb', 'show', $slug ) ?>' );
443 - }
444 - });
445 - }(jQuery));
446 -
447 - </script>
448 -
449 - <?php
450 - $account_addons = $fs->get_account_addons();
451 - if ( ! is_array( $account_addons ) ) {
452 - $account_addons = array();
453 - }
454 -
455 - $installed_addons = $fs->get_installed_addons();
456 - $installed_addons_ids = array();
457 - foreach ( $installed_addons as $fs_addon ) {
458 - $installed_addons_ids[] = $fs_addon->get_id();
459 - }
460 -
461 - $addons_to_show = array_unique( array_merge( $installed_addons_ids, $account_addons ) );
462 - ?>
463 - <?php if ( 0 < count( $addons_to_show ) ) : ?>
464 - <!-- Add-Ons -->
465 - <div class="postbox">
466 - <div class="">
467 - <!-- <div class="inside">-->
468 - <table id="fs_addons" class="widefat">
469 - <thead>
470 - <tr>
471 - <th><h3><?php echo esc_html( $addons_text ) ?></h3></th>
472 - <th><?php fs_esc_html_echo_inline( 'ID', 'id', $slug ) ?></th>
473 - <th><?php echo esc_html( $version_text ) ?></th>
474 - <th><?php echo esc_html( $plan_text ) ?></th>
475 - <th><?php fs_esc_html_echo_x_inline( 'License', 'as software license', 'license', $slug ) ?></th>
476 - <th></th>
477 - <?php if ( defined( 'WP_FS__DEV_MODE' ) && WP_FS__DEV_MODE ) : ?>
478 - <th></th>
479 - <?php endif ?>
480 - </tr>
481 - </thead>
482 - <tbody>
483 - <?php $odd = true;
484 - foreach ( $addons_to_show as $addon_id ) : ?>
485 - <?php
486 - $addon = $fs->get_addon( $addon_id );
487 - $is_addon_activated = $fs->is_addon_activated( $addon_id );
488 - $is_addon_connected = $fs->is_addon_connected( $addon_id );
489 -
490 - $fs_addon = $is_addon_connected ? freemius( $addon_id ) : false;
491 - if ( is_object( $fs_addon ) ) {
492 - $is_paying = $fs_addon->is_paying();
493 - $user = $fs_addon->get_user();
494 - $site = $fs_addon->get_site();
495 - $license = $fs_addon->_get_license();
496 - $subscription = $fs_addon->_get_subscription();
497 - $plan = $fs_addon->get_plan();
498 - $is_active_subscription = ( is_object( $subscription ) && $subscription->is_active() );
499 - $is_paid_trial = $fs_addon->is_paid_trial();
500 - $show_upgrade = ( ! $is_paying && ! $is_paid_trial && ! $fs_addon->_has_premium_license() );
501 - $is_current_license_expired = is_object( $license ) && $license->is_expired();
502 - }
503 -
504 - // var_dump( $is_paid_trial, $license, $site, $subscription );
505 -
506 - ?>
507 - <tr<?php if ( $odd ) {
508 - echo ' class="alternate"';
509 - } ?>>
510 - <td>
511 - <!-- Title -->
512 - <?php echo $addon->title ?>
513 - </td>
514 - <?php if ( $is_addon_connected ) : ?>
515 - <?php // Add-on Installed ?>
516 - <?php $addon_site = $fs_addon->get_site(); ?>
517 - <td>
518 - <!-- ID -->
519 - <?php echo $addon_site->id ?>
520 - </td>
521 - <td>
522 - <!-- Version -->
523 - <?php echo $fs_addon->get_plugin_version() ?>
524 - </td>
525 - <td>
526 - <!-- Plan Title -->
527 - <?php echo strtoupper( is_string( $addon_site->plan->name ) ? $addon_site->plan->title : $free_text ) ?>
528 - </td>
529 - <td>
530 - <!-- Expiration -->
531 - <?php
532 - $tags = array();
533 -
534 - if ( $fs_addon->is_trial() ) {
535 - $tags[] = array( 'label' => $trial_text, 'type' => 'success' );
536 -
537 - $tags[] = array(
538 - 'label' => sprintf(
539 - ( $is_paid_trial ?
540 - $renews_in_text :
541 - $expires_in_text ),
542 - human_time_diff( time(), strtotime( $site->trial_ends ) )
543 - ),
544 - 'type' => ( $is_paid_trial ? 'success' : 'warn' )
545 - );
546 - } else {
547 - if ( is_object( $license ) ) {
548 - if ( $license->is_cancelled ) {
549 - $tags[] = array(
550 - 'label' => fs_text_inline( 'Cancelled', 'cancelled', $slug ),
551 - 'type' => 'error'
552 - );
553 - } else if ( $license->is_expired() ) {
554 - $tags[] = array(
555 - 'label' => fs_text_inline( 'Expired', 'expired', $slug ),
556 - 'type' => 'error'
557 - );
558 - } else if ( $license->is_lifetime() ) {
559 - $tags[] = array(
560 - 'label' => fs_text_inline( 'No expiration', 'no-expiration', $slug ),
561 - 'type' => 'success'
562 - );
563 - } else if ( ! $is_active_subscription && ! $license->is_first_payment_pending() ) {
564 - $tags[] = array(
565 - 'label' => sprintf( $expires_in_text, human_time_diff( time(), strtotime( $license->expiration ) ) ),
566 - 'type' => 'warn'
567 - );
568 - } else if ( $is_active_subscription && ! $subscription->is_first_payment_pending() ) {
569 - $tags[] = array(
570 - 'label' => sprintf( $renews_in_text, human_time_diff( time(), strtotime( $subscription->next_payment ) ) ),
571 - 'type' => 'success'
572 - );
573 - }
574 - }
575 - }
576 -
577 - foreach ( $tags as $t ) {
578 - printf( '<label class="fs-tag fs-%s">%s</label>' . "\n", $t['type'], $t['label'] );
579 - }
580 - ?>
581 - </td>
582 - <?php
583 - $buttons = array();
584 - if ( $is_addon_activated ) {
585 - if ( $is_paying ) {
586 - $buttons[] = fs_ui_get_action_button(
587 - $fs->get_id(),
588 - 'account',
589 - 'deactivate_license',
590 - fs_text_inline( 'Deactivate License', 'deactivate-license', $slug ),
591 - array( 'plugin_id' => $addon_id ),
592 - false
593 - );
594 -
595 - $human_readable_license_expiration = human_time_diff( time(), strtotime( $license->expiration ) );
596 - $downgrade_confirmation_message = sprintf(
597 - $downgrade_x_confirm_text,
598 - $plan->title,
599 - $human_readable_license_expiration
600 - );
601 -
602 - $after_downgrade_message = ! $license->is_block_features ?
603 - sprintf( $after_downgrade_non_blocking_text, $plan->title, $fs_addon->get_module_label( true ) ) :
604 - sprintf( $after_downgrade_blocking_text, $plan->title );
605 -
606 - if ( ! $license->is_lifetime() && $is_active_subscription ) {
607 - $buttons[] = fs_ui_get_action_button(
608 - $fs->get_id(),
609 - 'account',
610 - 'downgrade_account',
611 - $downgrade_text,
612 - array( 'plugin_id' => $addon_id ),
613 - false,
614 - false,
615 - ( $downgrade_confirmation_message . ' ' . $after_downgrade_message ),
616 - 'POST'
617 - );
618 - }
619 - } else if ( $is_paid_trial ) {
620 - $buttons[] = fs_ui_get_action_button(
621 - $fs->get_id(),
622 - 'account',
623 - 'cancel_trial',
624 - $cancel_trial_text,
625 - array( 'plugin_id' => $addon_id ),
626 - false,
627 - 'dashicons dashicons-download',
628 - $cancel_trial_confirm_text,
629 - 'POST'
630 - );
631 - } else {
632 - $premium_license = $fs_addon->_get_available_premium_license();
633 -
634 - if ( is_object( $premium_license ) ) {
635 - $site = $fs_addon->get_site();
636 -
637 - $buttons[] = fs_ui_get_action_button(
638 - $fs->get_id(),
639 - 'account',
640 - 'activate_license',
641 - sprintf( $activate_plan_text, $fs_addon->get_plan_title(), ( $site->is_localhost() && $premium_license->is_free_localhost ) ? '[localhost]' : ( 1 < $premium_license->left() ? $premium_license->left() . ' left' : '' ) ),
642 - array(
643 - 'plugin_id' => $addon_id,
644 - 'license_id' => $premium_license->id,
645 - )
646 - );
647 - }
648 - }
649 -
650 - if ( 0 == count( $buttons ) ) {
651 - // Add sync license only if non of the other CTAs are visible.
652 - $buttons[] = fs_ui_get_action_button(
653 - $fs->get_id(),
654 - 'account',
655 - $fs->get_unique_affix() . '_sync_license',
656 - $sync_license_text,
657 - array( 'plugin_id' => $addon_id ),
658 - false
659 - );
660 -
661 - }
662 - } else if ( ! $show_upgrade ) {
663 - if ( $fs->is_addon_installed( $addon_id ) ) {
664 - $addon_file = $fs->get_addon_basename( $addon_id );
665 - $buttons[] = sprintf(
666 - '<a class="button button-primary edit" href="%s" title="%s">%s</a>',
667 - wp_nonce_url( 'plugins.php?action=activate&amp;plugin=' . $addon_file, 'activate-plugin_' . $addon_file ),
668 - fs_esc_attr_inline( 'Activate this add-on', 'activate-this-addon', $slug ),
669 - $activate_text
670 - );
671 - } else {
672 - if ( $fs->is_allowed_to_install() ) {
673 - $buttons[] = sprintf(
674 - '<a class="button button-primary edit" href="%s">%s</a>',
675 - wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=' . $addon->slug ), 'install-plugin_' . $addon->slug ),
676 - fs_text_inline( 'Install Now', 'install-now', $slug )
677 - );
678 - } else {
679 - $buttons[] = sprintf(
680 - '<a target="_blank" class="button button-primary edit" href="%s">%s</a>',
681 - $fs->_get_latest_download_local_url( $addon_id ),
682 - esc_html( $download_latest_text )
683 - );
684 - }
685 - }
686 - }
687 -
688 - if ( $show_upgrade ) {
689 - $buttons[] = sprintf( '<a href="%s" class="thickbox button button-primary" aria-label="%s" data-title="%s"><i class="dashicons dashicons-cart"></i> %s</a>',
690 - esc_url( network_admin_url( 'plugin-install.php?tab=plugin-information&parent_plugin_id=' . $fs->get_id() . '&plugin=' . $addon->slug .
691 - '&TB_iframe=true&width=600&height=550' ) ),
692 - esc_attr( sprintf( fs_text_inline( 'More information about %s', 'more-information-about-x', $slug ), $addon->title ) ),
693 - esc_attr( $addon->title ),
694 - ( $fs_addon->has_free_plan() ?
695 - $upgrade_text :
696 - fs_text_x_inline( 'Purchase', 'verb', 'purchase', $slug ) )
697 - );
698 - }
699 -
700 - $buttons_count = count( $buttons );
701 - ?>
702 -
703 - <td>
704 - <!-- Actions -->
705 - <?php if ($buttons_count > 1) : ?>
706 - <div class="button-group">
707 - <?php endif ?>
708 - <?php foreach ( $buttons as $button ) : ?>
709 - <?php echo $button ?>
710 - <?php endforeach ?>
711 - <?php if ($buttons_count > 1) : ?>
712 - </div>
713 - <?php endif ?>
714 - </td>
715 - <?php else : ?>
716 - <?php // Add-on NOT Installed or was never connected.
717 - ?>
718 - <td colspan="4">
719 - <!-- Action -->
720 - <?php if ( $fs->is_addon_installed( $addon_id ) ) : ?>
721 - <?php $addon_file = $fs->get_addon_basename( $addon_id ) ?>
722 - <a class="button button-primary"
723 - href="<?php echo wp_nonce_url( 'plugins.php?action=activate&amp;plugin=' . $addon_file, 'activate-plugin_' . $addon_file ) ?>"
724 - title="<?php fs_esc_attr_echo_inline( 'Activate this add-on', 'activate-this-addon', $slug ) ?>"
725 - class="edit"><?php echo esc_html( $activate_text ) ?></a>
726 - <?php else : ?>
727 - <?php if ( $fs->is_allowed_to_install() ) : ?>
728 - <a class="button button-primary"
729 - href="<?php echo wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=' . $addon->slug ), 'install-plugin_' . $addon->slug ) ?>"><?php fs_esc_html_echo_inline( 'Install Now', 'install-now', $slug ) ?></a>
730 - <?php else : ?>
731 - <a target="_blank" class="button button-primary"
732 - href="<?php echo $fs->_get_latest_download_local_url( $addon_id ) ?>"><?php echo esc_html( $download_latest_text ) ?></a>
733 - <?php endif ?>
734 - <?php endif ?>
735 - </td>
736 - <?php endif ?>
737 - <?php if ( ! $is_paying && defined( 'WP_FS__DEV_MODE' ) && WP_FS__DEV_MODE ) : ?>
738 - <td>
739 - <!-- Optional Delete Action -->
740 - <?php
741 - if ( $is_addon_activated ) {
742 - fs_ui_action_button(
743 - $fs->get_id(), 'account',
744 - 'delete_account',
745 - fs_text_x_inline( 'Delete', 'verb', 'delete', $slug ),
746 - array( 'plugin_id' => $addon_id ),
747 - false
748 - );
749 - }
750 - ?>
751 - </td>
752 - <?php endif ?>
753 - </tr>
754 - <?php $odd = ! $odd;
755 - endforeach ?>
756 - </tbody>
757 - </table>
758 - </div>
759 - </div>
760 - <?php endif ?>
761 -
762 - <?php $fs->do_action( 'after_account_details' ) ?>
763 -
764 - <?php
765 - $view_params = array( 'id' => $VARS['id'] );
766 - fs_require_once_template( 'account/billing.php', $view_params );
767 - fs_require_once_template( 'account/payments.php', $view_params );
768 - ?>
769 - </div>
770 - </div>
771 - </div>
772 - </div>
773 - </div>
774 -<?php
775 - if ( $has_tabs ) {
776 - $fs->_add_tabs_after_content();
777 - }
778 -
779 - $params = array(
780 - 'page' => 'account',
781 - 'module_id' => $fs->get_id(),
782 - 'module_type' => $fs->get_module_type(),
783 - 'module_slug' => $slug,
784 - 'module_version' => $fs->get_plugin_version(),
785 - );
786 - fs_require_template( 'powered-by.php', $params );
1 +<?php
2 + /**
3 + * @package Freemius
4 + * @copyright Copyright (c) 2015, Freemius, Inc.
5 + * @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
6 + * @since 1.0.3
7 + */
8 +
9 + if ( ! defined( 'ABSPATH' ) ) {
10 + exit;
11 + }
12 +
13 + /**
14 + * @var array $VARS
15 + * @var Freemius $fs
16 + */
17 + $fs = freemius( $VARS['id'] );
18 +
19 + $slug = $fs->get_slug();
20 +
21 + /**
22 + * @var FS_Plugin_Tag $update
23 + */
24 + $update = $fs->has_release_on_freemius() ?
25 + $fs->get_update( false, false ) :
26 + null;
27 +
28 + if ( is_object($update) ) {
29 + /**
30 + * This logic is particularly required for multisite environment.
31 + * If a module is site activated (not network) and not on the main site,
32 + * the module will NOT be executed on the network level, therefore, the
33 + * custom updates logic will not be executed as well, so unless we force
34 + * the injection of the update into the updates transient, premium updates
35 + * will not work.
36 + *
37 + * @author Vova Feldman (@svovaf)
38 + * @since 2.0.0
39 + */
40 + $updater = FS_Plugin_Updater::instance( $fs );
41 + $updater->set_update_data( $update );
42 + }
43 +
44 + $is_paying = $fs->is_paying();
45 + $user = $fs->get_user();
46 + $site = $fs->get_site();
47 + $name = $user->get_name();
48 + $license = $fs->_get_license();
49 + $is_license_foreign = ( is_object( $license ) && $user->id != $license->user_id );
50 + $is_data_debug_mode = $fs->is_data_debug_mode();
51 + $is_whitelabeled = $fs->is_whitelabeled();
52 + $subscription = ( is_object( $license ) ?
53 + $fs->_get_subscription( $license->id ) :
54 + null );
55 + $plan = $fs->get_plan();
56 + $is_active_subscription = ( is_object( $subscription ) && $subscription->is_active() );
57 + $is_paid_trial = $fs->is_paid_trial();
58 + $has_paid_plan = $fs->apply_filters( 'has_paid_plan_account', $fs->has_paid_plan() );
59 + $show_upgrade = ( ! $is_whitelabeled && $has_paid_plan && ! $is_paying && ! $is_paid_trial );
60 + $trial_plan = $fs->get_trial_plan();
61 +
62 + $is_plan_change_supported = (
63 + ! $fs->is_single_plan() &&
64 + ! $fs->apply_filters( 'hide_plan_change', false )
65 + );
66 +
67 + if ( $has_paid_plan ) {
68 + $fs->_add_license_activation_dialog_box();
69 + }
70 +
71 + if ( $fs->should_handle_user_change() ) {
72 + $fs->_add_email_address_update_dialog_box();
73 + }
74 +
75 + $ids_of_installs_activated_with_foreign_licenses = $fs->should_handle_user_change() ?
76 + $fs->get_installs_ids_with_foreign_licenses() :
77 + array();
78 +
79 + if ( ! empty( $ids_of_installs_activated_with_foreign_licenses ) ) {
80 + $fs->_add_user_change_dialog_box( $ids_of_installs_activated_with_foreign_licenses );
81 + }
82 +
83 + if ( $fs->is_whitelabeled( true ) || $fs->is_data_debug_mode() ) {
84 + $fs->_add_data_debug_mode_dialog_box();
85 + }
86 +
87 + if ( fs_request_get_bool( 'auto_install' ) ) {
88 + $fs->_add_auto_installation_dialog_box();
89 + }
90 +
91 + if ( fs_request_get_bool( 'activate_license' ) ) {
92 + // Open the license activation dialog box on the account page.
93 + add_action( 'admin_footer', array(
94 + &$fs,
95 + '_open_license_activation_dialog_box'
96 + ) );
97 + }
98 +
99 + $show_billing = ( ! $is_whitelabeled && ! $fs->apply_filters( 'hide_billing_and_payments_info', false ) );
100 + if ( $show_billing ) {
101 + $payments = $fs->_fetch_payments();
102 +
103 + $show_billing = ( is_array( $payments ) && 0 < count( $payments ) );
104 + }
105 +
106 +
107 + $has_tabs = $fs->_add_tabs_before_content();
108 +
109 + // Aliases.
110 + $download_latest_text = fs_text_x_inline( 'Download Latest', 'as download latest version', 'download-latest', $slug );
111 + $downgrading_plan_text = fs_text_inline( 'Downgrading your plan', 'downgrading-plan', $slug );
112 + $cancelling_subscription_text = fs_text_inline( 'Cancelling the subscription', 'cancelling-subscription', $slug );
113 + /* translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription' */
114 + $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 );
115 + $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 );
116 + $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 );
117 + $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 );
118 + $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 );
119 + /* translators: %s: Plan title (e.g. "Professional") */
120 + $activate_plan_text = fs_text_inline( 'Activate %s Plan', 'activate-x-plan', $slug );
121 + $version_text = fs_text_x_inline( 'Version', 'product version', 'version', $slug );
122 + /* translators: %s: Time period (e.g. Auto renews in "2 months") */
123 + $renews_in_text = fs_text_inline( 'Auto renews in %s', 'renews-in', $slug );
124 + /* translators: %s: Time period (e.g. Expires in "2 months") */
125 + $expires_in_text = fs_text_inline( 'Expires in %s', 'expires-in', $slug );
126 + $sync_license_text = fs_text_x_inline( 'Sync License', 'as synchronize license', 'sync-license', $slug );
127 + $cancel_trial_text = fs_text_inline( 'Cancel Trial', 'cancel-trial', $slug );
128 + $change_plan_text = fs_text_inline( 'Change Plan', 'change-plan', $slug );
129 + $upgrade_text = fs_text_x_inline( 'Upgrade', 'verb', 'upgrade', $slug );
130 + $addons_text = fs_text_inline( 'Add-Ons', 'add-ons', $slug );
131 + $downgrade_text = fs_text_x_inline( 'Downgrade', 'verb', 'downgrade', $slug );
132 + $trial_text = fs_text_x_inline( 'Trial', 'trial period', 'trial', $slug );
133 + $free_text = fs_text_inline( 'Free', 'free', $slug );
134 + $activate_text = fs_text_inline( 'Activate', 'activate', $slug );
135 + $plan_text = fs_text_x_inline( 'Plan', 'as product pricing plan', 'plan', $slug );
136 + $bundle_plan_text = fs_text_inline( 'Bundle Plan', 'bundle-plan', $slug );
137 +
138 + $show_plan_row = true;
139 + $show_license_row = is_object( $license );
140 +
141 + $site_view_params = array();
142 +
143 + if ( fs_is_network_admin() ) {
144 + $sites = Freemius::get_sites();
145 + $all_installs_plan_id = null;
146 + $all_installs_license_id = ( $show_license_row ? $license->id : null );
147 + foreach ( $sites as $s ) {
148 + $site_info = $fs->get_site_info( $s );
149 + $install = $fs->get_install_by_blog_id( $site_info['blog_id'] );
150 + $view_params = array(
151 + 'freemius' => $fs,
152 + 'user' => $fs->get_user(),
153 + 'license' => $license,
154 + 'site' => $site_info,
155 + 'install' => $install,
156 + );
157 +
158 + $site_view_params[] = $view_params;
159 +
160 + if ( empty( $install ) ) {
161 + continue;
162 + }
163 +
164 + if ( $show_plan_row ) {
165 + if ( is_null( $all_installs_plan_id ) ) {
166 + $all_installs_plan_id = $install->plan_id;
167 + } else if ( $all_installs_plan_id != $install->plan_id ) {
168 + $show_plan_row = false;
169 + }
170 + }
171 +
172 + if ( $show_license_row && $all_installs_license_id != $install->license_id ) {
173 + $show_license_row = false;
174 + }
175 + }
176 + }
177 +
178 + $has_bundle_license = false;
179 +
180 + if ( is_object( $license ) &&
181 + FS_Plugin_License::is_valid_id( $license->parent_license_id )
182 + ) {
183 + // Context license has a parent license, therefore, the account has a bundle license.
184 + $has_bundle_license = true;
185 + }
186 +
187 + $bundle_subscription = null;
188 + $is_bundle_first_payment_pending = false;
189 +
190 + if (
191 + $show_plan_row &&
192 + is_object( $license ) &&
193 + $has_bundle_license
194 + ) {
195 + $bundle_plan_title = strtoupper( $license->parent_plan_title );
196 + $bundle_subscription = $fs->_get_subscription( $license->parent_license_id );
197 + $is_bundle_first_payment_pending = $license->is_first_payment_pending();
198 + }
199 +
200 + $fs_blog_id = ( is_multisite() && ! is_network_admin() ) ?
201 + get_current_blog_id() :
202 + 0;
203 +
204 + $active_plugins_directories_map = Freemius::get_active_plugins_directories_map( $fs_blog_id );
205 +
206 + $is_premium = $fs->is_premium();
207 +
208 + $account_addons = $fs->get_updated_account_addons();
209 + $installed_addons = $fs->get_installed_addons();
210 + $installed_addons_ids = array();
211 +
212 + /**
213 + * Store the installed add-ons' IDs into a collection which will be used in determining the add-ons to show on the "Account" page, and at the same time try to find an add-on that is activated with a bundle license if the core product is not.
214 + *
215 + * @author Leo Fajardo
216 + *
217 + * @since 2.4.0
218 + */
219 + foreach ( $installed_addons as $fs_addon ) {
220 + $installed_addons_ids[] = $fs_addon->get_id();
221 +
222 + if ( $has_bundle_license ) {
223 + // We already have the context bundle license details, skip.
224 + continue;
225 + }
226 +
227 + if (
228 + $show_plan_row &&
229 + $fs_addon->has_active_valid_license()
230 + ) {
231 + $addon_license = $fs_addon->_get_license();
232 +
233 + if ( FS_Plugin_License::is_valid_id( $addon_license->parent_license_id ) ) {
234 + // Add-on's license is associated with a parent/bundle license.
235 + $has_bundle_license = true;
236 +
237 + $bundle_plan_title = strtoupper( $addon_license->parent_plan_title );
238 + $bundle_subscription = $fs_addon->_get_subscription( $addon_license->parent_license_id );
239 + $is_bundle_first_payment_pending = $addon_license->is_first_payment_pending();
240 + }
241 + }
242 + }
243 +
244 + $addons_to_show = array_unique( array_merge( $installed_addons_ids, $account_addons ) );
245 +
246 + $is_active_bundle_subscription = ( is_object( $bundle_subscription ) && $bundle_subscription->is_active() );
247 +
248 + $available_license = ( $fs->is_free_plan() && ! fs_is_network_admin() ) ?
249 + $fs->_get_available_premium_license( $site->is_localhost() ) :
250 + null;
251 +
252 + $available_license_paid_plan = is_object( $available_license ) ?
253 + $fs->_get_plan_by_id( $available_license->plan_id ) :
254 + null;
255 +?>
256 + <div class="wrap fs-section">
257 + <?php if ( ! $has_tabs && ! $fs->apply_filters( 'hide_account_tabs', false ) ) : ?>
258 + <h2 class="nav-tab-wrapper">
259 + <a href="<?php echo esc_url( $fs->get_account_url() ) ?>"
260 + class="nav-tab nav-tab-active"><?php fs_esc_html_echo_inline( 'Account', 'account', $slug ) ?></a>
261 + <?php if ( $fs->has_addons() ) : ?>
262 + <a href="<?php echo esc_url( $fs->_get_admin_page_url( 'addons' ) ) ?>"
263 + class="nav-tab"><?php echo esc_html( $addons_text ) ?></a>
264 + <?php endif ?>
265 + <?php if ( $show_upgrade ) : ?>
266 + <a href="<?php echo esc_url( $fs->get_upgrade_url() ) ?>" class="nav-tab"><?php echo esc_html( $upgrade_text ) ?></a>
267 + <?php if ( $fs->apply_filters( 'show_trial', true ) && ! $fs->is_trial_utilized() && $fs->has_trial_plan() ) : ?>
268 + <a href="<?php echo esc_url( $fs->get_trial_url() ) ?>" class="nav-tab"><?php fs_esc_html_echo_inline( 'Free Trial', 'free-trial', $slug ) ?></a>
269 + <?php endif ?>
270 + <?php endif ?>
271 + </h2>
272 + <?php endif ?>
273 +
274 + <div id="poststuff">
275 + <div id="fs_account">
276 + <div class="has-sidebar has-right-sidebar">
277 + <div class="has-sidebar-content">
278 + <div class="postbox">
279 + <h3><span class="dashicons dashicons-businessman"></span> <?php fs_esc_html_echo_inline( 'Account Details', 'account-details', $slug ) ?></h3>
280 + <div class="fs-header-actions">
281 + <ul>
282 + <?php if ( $fs->is_whitelabeled( true ) ) : ?>
283 + <li>
284 + <a href="#" class="debug-license-trigger"><i class="dashicons dashicons-<?php echo $is_whitelabeled ? 'editor-code' : 'controls-pause' ?>"></i> <span><?php
285 + if ( $is_whitelabeled ) {
286 + fs_esc_html_echo_inline( 'Start Debug', 'start-debug-license', $slug );
287 + } else {
288 + fs_esc_html_echo_inline( 'Stop Debug', 'stop-debug-license', $slug );
289 + }
290 + ?></span></a>
291 + </li>
292 + <li>&nbsp;&bull;&nbsp;</li>
293 + <?php endif ?>
294 + <?php if ( $show_billing ) : ?>
295 + <li><a href="#fs_billing"><i class="dashicons dashicons-portfolio"></i> <?php fs_esc_html_echo_inline( 'Billing & Invoices', 'billing-invoices', $slug ) ?></a></li>
296 + <li>&nbsp;&bull;&nbsp;</li>
297 + <?php endif ?>
298 + <?php if ( ! $is_whitelabeled ) : ?>
299 + <?php if ( ! $is_paying ) : ?>
300 + <li>
301 + <?php
302 + $view_params = array(
303 + 'freemius' => $fs,
304 + 'license' => $available_license,
305 + 'license_paid_plan' => $available_license_paid_plan,
306 + );
307 + fs_require_template( 'account/partials/disconnect-button.php', $view_params ); ?>
308 + </li>
309 + <li>&nbsp;&bull;&nbsp;</li>
310 + <?php endif ?>
311 + <?php if ( $is_paying ) : ?>
312 + <?php if ( ! fs_is_network_admin() ) : ?>
313 + <li>
314 + <form action="<?php echo esc_url( $fs->_get_admin_page_url( 'account' ) ) ?>" method="POST">
315 + <input type="hidden" name="fs_action" value="deactivate_license">
316 + <?php wp_nonce_field( 'deactivate_license' ) ?>
317 + <a href="#" class="fs-deactivate-license"><i
318 + class="dashicons dashicons-admin-network"></i> <?php fs_echo_inline( 'Deactivate License', 'deactivate-license', $slug ) ?>
319 + </a>
320 + </form>
321 + </li>
322 + <li>&nbsp;&bull;&nbsp;</li>
323 + <?php endif ?>
324 + <?php if ( ! $license->is_lifetime() &&
325 + $is_active_subscription
326 + ) : ?>
327 + <li>
328 + <form action="<?php echo esc_url( $fs->_get_admin_page_url( 'account' ) ) ?>" method="POST">
329 + <input type="hidden" name="fs_action" value="downgrade_account">
330 + <?php wp_nonce_field( 'downgrade_account' ) ?>
331 + <a href="#"
332 + onclick="if ( confirm('<?php echo esc_attr( sprintf(
333 + $downgrade_x_confirm_text,
334 + ( $fs->is_only_premium() ? $cancelling_subscription_text : $downgrading_plan_text ),
335 + $plan->title,
336 + human_time_diff( time(), strtotime( $license->expiration ) )
337 + ) ) ?> <?php if ( ! $license->is_block_features ) {
338 + echo esc_attr( sprintf( $after_downgrade_non_blocking_text, $plan->title, $fs->get_module_label( true ) ) );
339 + } else {
340 + echo esc_attr( sprintf( $after_downgrade_blocking_text, $plan->title ) );
341 + }?> <?php echo esc_attr( $prices_increase_text ) ?> <?php fs_esc_attr_echo_inline( 'Are you sure you want to proceed?', 'proceed-confirmation', $slug ) ?>') ) this.parentNode.submit(); return false;"><i class="dashicons dashicons-download"></i> <?php echo esc_html( $fs->is_only_premium() ? fs_text_inline( 'Cancel Subscription', 'cancel-subscription', $slug ) : $downgrade_text ) ?></a>
342 + </form>
343 + </li>
344 + <li>&nbsp;&bull;&nbsp;</li>
345 + <?php endif ?>
346 + <?php if ( $is_plan_change_supported ) : ?>
347 + <li>
348 + <a href="<?php echo esc_url( $fs->get_upgrade_url() ) ?>"><i
349 + class="dashicons dashicons-grid-view"></i> <?php echo esc_html( $change_plan_text ) ?></a>
350 + </li>
351 + <li>&nbsp;&bull;&nbsp;</li>
352 + <?php endif ?>
353 + <?php elseif ( $is_paid_trial ) : ?>
354 + <li>
355 + <form action="<?php echo esc_url( $fs->_get_admin_page_url( 'account' ) ) ?>" method="POST">
356 + <input type="hidden" name="fs_action" value="cancel_trial">
357 + <?php wp_nonce_field( 'cancel_trial' ) ?>
358 + <a href="#" class="fs-cancel-trial"><i
359 + class="dashicons dashicons-download"></i> <?php echo esc_html( $cancel_trial_text ) ?></a>
360 + </form>
361 + </li>
362 + <li>&nbsp;&bull;&nbsp;</li>
363 + <?php endif ?>
364 + <?php endif ?>
365 + <li>
366 + <form action="<?php echo esc_url( $fs->_get_admin_page_url( 'account' ) ) ?>" method="POST">
367 + <input type="hidden" name="fs_action" value="<?php echo esc_attr( $fs->get_unique_affix() ) ?>_sync_license">
368 + <?php wp_nonce_field( $fs->get_unique_affix() . '_sync_license' ) ?>
369 + <a href="#" onclick="this.parentNode.submit(); return false;"><i
370 + class="dashicons dashicons-image-rotate"></i> <?php fs_esc_html_echo_x_inline( 'Sync', 'as synchronize', 'sync', $slug ) ?></a>
371 + </form>
372 + </li>
373 + </ul>
374 + </div>
375 + <div class="inside">
376 + <table id="fs_account_details" cellspacing="0" class="fs-key-value-table">
377 + <?php
378 + $hide_license_key = ( ! $show_license_row || $fs->apply_filters( 'hide_license_key', false ) );
379 +
380 + $profile = array();
381 +
382 + if ( ! $is_whitelabeled ) {
383 + $profile[] = array(
384 + 'id' => 'user_name',
385 + 'title' => fs_text_inline( 'Name', 'name', $slug ),
386 + 'value' => $name
387 + );
388 + // if (isset($user->email) && false !== strpos($user->email, '@'))
389 + $profile[] = array(
390 + 'id' => 'email',
391 + 'title' => fs_text_inline( 'Email', 'email', $slug ),
392 + 'value' => $user->email
393 + );
394 +
395 + if ( is_numeric( $user->id ) ) {
396 + $profile[] = array(
397 + 'id' => 'user_id',
398 + 'title' => fs_text_inline( 'User ID', 'user-id', $slug ),
399 + 'value' => $user->id
400 + );
401 + }
402 + }
403 +
404 + $profile[] = array(
405 + 'id' => 'product',
406 + 'title' => ( $fs->is_plugin() ?
407 + fs_text_inline( 'Plugin', 'plugin', $slug ) :
408 + fs_text_inline( 'Theme', 'theme', $slug ) ),
409 + 'value' => $fs->get_plugin_title()
410 + );
411 +
412 + $profile[] = array(
413 + 'id' => 'product_id',
414 + 'title' => ( $fs->is_plugin() ?
415 + fs_text_inline( 'Plugin', 'plugin', $slug ) :
416 + fs_text_inline( 'Theme', 'theme', $slug ) ) . ' ' . fs_text_inline( 'ID', 'id', $slug ),
417 + 'value' => $fs->get_id()
418 + );
419 +
420 + if ( ! fs_is_network_admin()) {
421 + $profile[] = array(
422 + 'id' => 'site_id',
423 + 'title' => fs_text_inline( 'Site ID', 'site-id', $slug ),
424 + 'value' => is_string( $site->id ) ?
425 + $site->id :
426 + fs_text_inline( 'No ID', 'no-id', $slug )
427 + );
428 +
429 + $profile[] = array(
430 + 'id' => 'site_public_key',
431 + 'title' => fs_text_inline( 'Public Key', 'public-key', $slug ),
432 + 'value' => $site->public_key
433 + );
434 +
435 + $profile[] = array(
436 + 'id' => 'site_secret_key',
437 + 'title' => fs_text_inline( 'Secret Key', 'secret-key', $slug ),
438 + 'value' => ( ( is_string( $site->secret_key ) ) ?
439 + $site->secret_key :
440 + fs_text_x_inline( 'No Secret', 'as secret encryption key missing', 'no-secret', $slug )
441 + )
442 + );
443 + }
444 +
445 + $profile[] = array(
446 + 'id' => 'version',
447 + 'title' => $version_text,
448 + 'value' => $fs->get_plugin_version()
449 + );
450 +
451 + if ( ! fs_is_network_admin() && $is_premium ) {
452 + $profile[] = array(
453 + 'id' => 'beta_program',
454 + 'title' => '',
455 + 'value' => $site->is_beta
456 + );
457 + }
458 +
459 + if ( $has_paid_plan || $has_bundle_license ) {
460 + if ( $fs->is_trial() ) {
461 + if ( $show_plan_row ) {
462 + $profile[] = array(
463 + 'id' => 'plan',
464 + 'title' => $plan_text,
465 + 'value' => ( is_string( $trial_plan->name ) ?
466 + strtoupper( $trial_plan->title ) :
467 + fs_text_inline( 'Trial', 'trial', $slug ) )
468 + );
469 + }
470 + } else {
471 + if ( $show_plan_row ) {
472 + $profile[] = array(
473 + 'id' => 'plan',
474 + 'title' => ( $has_bundle_license ? ucfirst( $fs->get_module_type() ) . ' ' : '' ) . $plan_text,
475 + 'value' => strtoupper( is_string( $plan->name ) ?
476 + $plan->title :
477 + strtoupper( $free_text )
478 + )
479 + );
480 +
481 + if ( $has_bundle_license ) {
482 + $profile[] = array(
483 + 'id' => 'bundle_plan',
484 + 'title' => $bundle_plan_text,
485 + 'value' => $bundle_plan_title
486 + );
487 + }
488 + }
489 +
490 + if ( is_object( $license ) ) {
491 + if ( ! $hide_license_key ) {
492 + $profile[] = array(
493 + 'id' => 'license_key',
494 + 'title' => fs_text_inline( 'License Key', $slug ),
495 + 'value' => $license->secret_key,
496 + );
497 + }
498 + }
499 + }
500 + }
501 + ?>
502 + <?php $odd = true;
503 + foreach ( $profile as $p ) : ?>
504 + <?php
505 + if ( 'plan' === $p['id'] && ! $has_paid_plan ) {
506 + // If plugin don't have any paid plans, there's no reason
507 + // to show current plan.
508 + continue;
509 + }
510 + ?>
511 + <tr class="fs-field-<?php echo esc_attr( $p['id'] ) ?><?php if ( $odd ) : ?> alternate<?php endif ?>">
512 + <td>
513 + <nobr><?php echo esc_html( $p['title'] ) ?><?php echo ( ! empty( $p['title'] ) ) ? ':' : '' ?></nobr>
514 + </td>
515 + <td<?php if ( 'plan' === $p['id'] || 'bundle_plan' === $p['id'] ) { echo ' colspan="2"'; }?>>
516 + <?php if ( in_array( $p['id'], array( 'license_key', 'site_secret_key' ) ) ) : ?>
517 + <code><?php echo FS_Plugin_License::mask_secret_key_for_html( $p['value'] ) ?></code>
518 + <?php if ( ! $is_whitelabeled ) : ?>
519 + <input type="text" value="<?php echo htmlspecialchars( $p['value'] ) ?>" style="display: none"
520 + readonly/>
521 + <?php endif ?>
522 + <?php elseif ( 'beta_program' === $p['id'] ) : ?>
523 + <label>
524 + <input type="checkbox" class="fs-toggle-beta-mode" <?php checked( true, $p['value'] ) ?>/><span><?php
525 + fs_esc_html_echo_inline( 'Join the Beta program', 'join-beta', $slug )
526 + ?></span></label>
527 + <?php else : ?>
528 + <code><?php echo htmlspecialchars( $p['value'] ) ?></code>
529 + <?php endif ?>
530 + <?php if ( 'email' === $p['id'] && ! $user->is_verified() ) : ?>
531 + <label class="fs-tag fs-warn"><?php fs_esc_html_echo_inline( 'not verified', 'not-verified', $slug ) ?></label>
532 + <?php endif ?>
533 + <?php if ( 'plan' === $p['id'] ) : ?>
534 + <?php if ( $fs->is_trial() ) : ?>
535 + <label class="fs-tag fs-success"><?php echo esc_html( $trial_text ) ?></label>
536 + <?php endif ?>
537 + <?php if ( is_object( $license ) && ! $license->is_lifetime() ) : ?>
538 + <?php if ( ! $is_active_subscription && ! $is_active_bundle_subscription && ! $license->is_first_payment_pending() ) : ?>
539 + <?php $is_license_expired = $license->is_expired() ?>
540 + <?php $expired_ago_text = ( fs_text_inline( 'Expired', 'expired', $slug ) . ' ' . fs_text_x_inline( '%s ago', 'x-ago', $slug ) ) ?>
541 + <label
542 + class="fs-tag <?php echo $is_license_expired ? 'fs-error' : 'fs-warn' ?>"><?php
543 + echo esc_html( sprintf( $is_license_expired ? $expired_ago_text : $expires_in_text, human_time_diff( time(), strtotime( $license->expiration ) ) ) )
544 + ?></label>
545 + <?php elseif ( $is_active_subscription && ! $subscription->is_first_payment_pending() ) : ?>
546 + <label class="fs-tag fs-success"><?php echo esc_html( sprintf( $renews_in_text, human_time_diff( time(), strtotime( $subscription->next_payment ) ) ) ) ?></label>
547 + <?php endif ?>
548 + <?php elseif ( $fs->is_trial() ) : ?>
549 + <label class="fs-tag fs-warn"><?php echo esc_html( sprintf( $expires_in_text, human_time_diff( time(), strtotime( $site->trial_ends ) ) ) ) ?></label>
550 + <?php endif ?>
551 + <?php if ( ! $is_whitelabeled ) : ?>
552 + <div class="button-group">
553 + <?php if ( is_object( $available_license ) ) : ?>
554 + <?php
555 + $view_params = array(
556 + 'freemius' => $fs,
557 + 'slug' => $slug,
558 + 'license' => $available_license,
559 + 'plan' => $available_license_paid_plan,
560 + 'is_localhost' => $site->is_localhost(),
561 + 'install_id' => $site->id,
562 + 'class' => 'button-primary',
563 + );
564 + fs_require_template( 'account/partials/activate-license-button.php', $view_params ); ?>
565 + <?php else : ?>
566 + <form action="<?php echo esc_url( $fs->_get_admin_page_url( 'account' ) ) ?>"
567 + method="POST" class="button-group">
568 + <?php if ( $show_upgrade && $is_premium ) : ?>
569 + <a class="button activate-license-trigger <?php echo esc_attr( $fs->get_unique_affix() ) ?>" href="#"><?php fs_esc_html_echo_inline( 'Activate License', 'activate-license', $slug ) ?></a>
570 + <?php endif ?>
571 + <input type="submit" class="button"
572 + value="<?php echo esc_attr( $sync_license_text ) ?>">
573 + <input type="hidden" name="fs_action"
574 + value="<?php echo esc_attr( $fs->get_unique_affix() ) ?>_sync_license">
575 + <?php wp_nonce_field( $fs->get_unique_affix() . '_sync_license' ) ?>
576 + <?php if ( $show_upgrade || $is_plan_change_supported ) : ?>
577 + <a href="<?php echo esc_url( $fs->get_upgrade_url() ) ?>"
578 + class="button<?php
579 + echo $show_upgrade ?
580 + ' button-primary fs-upgrade' :
581 + ' fs-change-plan'; ?> button-upgrade"><i
582 + class="dashicons dashicons-cart"></i> <?php echo esc_html( $show_upgrade ? $upgrade_text : $change_plan_text ) ?></a>
583 + <?php endif ?>
584 + </form>
585 + <?php endif ?>
586 + </div>
587 + <?php endif ?>
588 + <?php elseif ( 'bundle_plan' === $p['id'] ) : ?>
589 + <?php if ( is_object( $bundle_subscription ) ) : ?>
590 + <?php if ( $is_active_bundle_subscription && ! $is_bundle_first_payment_pending ) : ?>
591 + <label class="fs-tag fs-success"><?php echo esc_html( sprintf( $renews_in_text, human_time_diff( time(), strtotime( $bundle_subscription->next_payment ) ) ) ) ?></label>
592 + <?php endif ?>
593 + <?php endif ?>
594 + <?php elseif ( 'version' === $p['id'] && $has_paid_plan ) : ?>
595 + <?php if ( $fs->has_premium_version() ) : ?>
596 + <?php if ( $is_premium ) : ?>
597 + <label
598 + class="fs-tag fs-<?php echo $fs->can_use_premium_code() ? 'success' : 'warn' ?>"><?php fs_esc_html_echo_inline( 'Premium version', 'premium-version', $slug ) ?></label>
599 + <?php elseif ( $fs->can_use_premium_code() ) : ?>
600 + <label class="fs-tag fs-warn"><?php fs_esc_html_echo_inline( 'Free version', 'free-version', $slug ) ?></label>
601 + <?php endif ?>
602 + <?php endif ?>
603 + <?php endif ?>
604 + </td>
605 + <?php if ( 'plan' !== $p['id'] && 'bundle_plan' !== $p['id'] ) : ?>
606 + <td class="fs-right">
607 + <?php if ( 'email' === $p['id'] && ! $user->is_verified() ) : ?>
608 + <form action="<?php echo $fs->_get_admin_page_url( 'account' ) ?>" method="POST">
609 + <input type="hidden" name="fs_action" value="verify_email">
610 + <?php wp_nonce_field( 'verify_email' ) ?>
611 + <input type="submit" class="button button-small"
612 + value="<?php fs_esc_attr_echo_inline( 'Verify Email', 'verify-email', $slug ) ?>">
613 + </form>
614 + <?php endif ?>
615 + <?php if ( 'version' === $p['id'] ) : ?>
616 + <?php if ( $fs->has_release_on_freemius() ) : ?>
617 + <div class="button-group">
618 + <?php if ( $is_paying || $fs->is_trial() ) : ?>
619 + <?php if ( ! $fs->is_allowed_to_install() ) : ?>
620 + <a target="_blank" rel="noopener" class="button button-primary"
621 + href="<?php echo $fs->_get_latest_download_local_url() ?>"><?php
622 + $download_version_text_suffix = ( is_object( $update ) ? ' [' . $update->version . ']' : '' );
623 +
624 + $download_version_text = sprintf(
625 + /* translators: %s: plan name (e.g. Download "Professional" Version) */
626 + fs_text_inline( 'Download %s Version', 'download-x-version', $slug ),
627 + ( $fs->is_trial() ? $trial_plan->title : $plan->title )
628 + ) .
629 + $download_version_text_suffix;
630 +
631 + $download_version_text_length = function_exists( 'mb_strlen' ) ?
632 + mb_strlen( $download_version_text ) :
633 + strlen( $download_version_text );
634 +
635 + if ( $download_version_text_length > 31 ) {
636 + /**
637 + * Try to limit the number of characters to 31 for now.
638 + *
639 + * @author Leo Fajardo (@leorw)
640 + * @aince 2.3.2
641 + */
642 + $download_version_text = fs_text_inline( 'Download Paid Version', 'download-paid-version', $slug ) . $download_version_text_suffix;
643 + }
644 +
645 + echo $download_version_text;
646 + ?></a>
647 + <?php elseif ( is_object( $update ) ) : ?>
648 + <?php
649 + $module_type = $fs->get_module_type();
650 + ?>
651 + <a class="button button-primary"
652 + href="<?php echo wp_nonce_url( self_admin_url( "update.php?action=upgrade-{$module_type}&{$module_type}=" . $fs->get_plugin_basename() ), "upgrade-{$module_type}_" . $fs->get_plugin_basename() ) ?>"><?php echo fs_esc_html_inline( 'Install Update Now', 'install-update-now', $slug ) . ' [' . $update->version . ']' ?></a>
653 + <?php endif ?>
654 + <?php endif; ?>
655 + </div>
656 + <?php endif ?>
657 + <?php
658 + elseif ( in_array( $p['id'], array( 'license_key', 'site_secret_key' ) ) ) : ?>
659 + <?php if ( ! $is_whitelabeled && ( 'site_secret_key' === $p['id'] || ! $is_license_foreign ) ) : ?>
660 + <button class="button button-small fs-toggle-visibility"><?php fs_esc_html_echo_x_inline( 'Show', 'verb', 'show', $slug ) ?></button>
661 + <?php endif ?>
662 + <?php if ('license_key' === $p['id']) : ?>
663 + <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>
664 + <?php endif ?>
665 + <?php
666 + elseif (/*in_array($p['id'], array('site_secret_key', 'site_id', 'site_public_key')) ||*/
667 + ( is_string( $user->secret_key ) && in_array( $p['id'], array(
668 + 'email',
669 + 'user_name'
670 + ) ) )
671 + ) : ?>
672 + <?php if ( 'email' !== $p['id'] || ! fs_is_network_admin() ) : ?>
673 + <form action="<?php echo $fs->_get_admin_page_url( 'account' ) ?>" method="POST"
674 + onsubmit="var val = prompt('<?php echo esc_attr( sprintf(
675 + /* translators: %s: User's account property (e.g. name, email) */
676 + fs_text_inline( 'What is your %s?', 'what-is-your-x', $slug ),
677 + $p['title']
678 + ) ) ?>', '<?php echo $p['value'] ?>'); if (null == val || '' === val) return false; jQuery('input[name=fs_<?php echo $p['id'] ?>_<?php echo $fs->get_unique_affix() ?>]').val(val); return true;">
679 + <input type="hidden" name="fs_action" value="update_<?php echo $p['id'] ?>">
680 + <input type="hidden" name="fs_<?php echo $p['id'] ?>_<?php echo $fs->get_unique_affix() ?>"
681 + value="">
682 + <?php wp_nonce_field( 'update_' . $p['id'] ) ?>
683 + <input type="submit" class="button button-small <?php if ( 'email' === $p['id'] ) echo 'button-edit-email-address' ?>"
684 + value="<?php echo fs_esc_attr_x_inline( 'Edit', 'verb', 'edit', $slug ) ?>">
685 + </form>
686 + <?php endif ?>
687 + <?php elseif ( 'user_id' === $p['id'] && ! empty( $ids_of_installs_activated_with_foreign_licenses ) ) : ?>
688 + <input id="fs_change_user" type="submit" class="button button-small"
689 + value="<?php echo fs_esc_attr_inline( 'Change User', 'change-user', $slug ) ?>">
690 + <?php endif ?>
691 + </td>
692 + <?php endif ?>
693 + </tr>
694 + <?php
695 + if ( 'version' === $p['id'] && $is_premium ) {
696 + /**
697 + * If there's a row for the beta program, keep its background color
698 + * the same as the version info row.
699 + *
700 + * @author Leo Fajardo (@leorw)
701 + * @since 2.3.0
702 + */
703 + continue;
704 + }
705 +
706 + $odd = ! $odd;
707 + endforeach ?>
708 + </table>
709 + </div>
710 + </div>
711 + <?php if ( fs_is_network_admin() ) : ?>
712 + <div id="fs_sites" class="postbox">
713 + <h3><span class="dashicons dashicons-networking"></span> <?php fs_esc_html_echo_inline( 'Sites', 'sites', $slug ) ?></h3>
714 + <div class="fs-header-actions">
715 + <?php if ( ! $is_whitelabeled ) : ?>
716 + <?php $has_license = is_object( $license ) ?>
717 + <?php if ( $has_license || ( $show_upgrade && $is_premium ) ) : ?>
718 + <?php
719 + $activate_license_button_text = $has_license ?
720 + fs_esc_html_inline( 'Change License', 'change-license', $slug ) :
721 + fs_esc_html_inline( 'Activate License', 'activate-license', $slug );
722 + ?>
723 + <a class="button<?php echo ( ! $has_license ? ' button-primary' : '' ) ?> activate-license-trigger <?php echo $fs->get_unique_affix() ?>" href="#"><?php echo $activate_license_button_text ?></a>
724 + <?php endif ?>
725 + <?php endif ?>
726 + <input class="fs-search" type="text" placeholder="<?php fs_esc_attr_echo_inline( 'Search by address', 'search-by-address', $slug ) ?>..."><span class="dashicons dashicons-search"></span>
727 + </div>
728 + <div class="inside">
729 + <div id="" class="fs-scrollable-table">
730 + <div class="fs-table-head">
731 + <table class="widefat">
732 + <thead>
733 + <tr>
734 + <td><?php fs_esc_html_echo_inline('ID', 'id', $slug) ?></td>
735 + <td><?php fs_esc_html_echo_inline('Address', 'address', $slug) ?></td>
736 + <td><?php fs_esc_html_echo_inline('License', 'license', $slug) ?></td>
737 + <td><?php fs_esc_html_echo_inline('Plan', 'plan', $slug) ?></td>
738 + <td></td>
739 + </tr>
740 + </thead>
741 + </table>
742 + </div>
743 + <div class="fs-table-body">
744 + <table class="widefat">
745 + <?php
746 + $current_blog_id = get_current_blog_id();
747 +
748 + foreach ( $site_view_params as $view_params ) {
749 + fs_require_template(
750 + 'account/partials/site.php',
751 + $view_params
752 + );
753 + }
754 +
755 + /**
756 + * It's possible for the `Freemius::switch_to_blog()` method to be called within the `site.php` template and this changes the Freemius instance's context, so this check is for restoring the previous context based on the previously retrieved site.
757 + *
758 + * @author Leo Fajardo (@leorw)
759 + * @since 2.5.0
760 + */
761 + $current_install = $fs->get_site();
762 +
763 + if (
764 + is_object( $site ) &&
765 + ( ! is_object( $current_install ) || $current_install->id != $site->id )
766 + ) {
767 + $fs->switch_to_blog( $current_blog_id, $site, true );
768 + }
769 + ?>
770 + </table>
771 + </div>
772 + </div>
773 + </div>
774 + </div>
775 + <?php endif ?>
776 + <?php if ( 0 < count( $addons_to_show ) ) : ?>
777 + <!-- Add-Ons -->
778 + <div class="postbox">
779 + <div class="">
780 + <!-- <div class="inside">-->
781 + <table id="fs_addons" class="widefat">
782 + <thead>
783 + <tr>
784 + <th><h3><?php echo esc_html( $addons_text ) ?></h3></th>
785 + <th><?php fs_esc_html_echo_inline( 'ID', 'id', $slug ) ?></th>
786 + <th><?php echo esc_html( $version_text ) ?></th>
787 + <th><?php echo esc_html( $plan_text ) ?></th>
788 + <th><?php fs_esc_html_echo_x_inline( 'License', 'as software license', 'license', $slug ) ?></th>
789 + <th></th>
790 + <?php if ( defined( 'WP_FS__DEV_MODE' ) && WP_FS__DEV_MODE ) : ?>
791 + <th></th>
792 + <?php endif ?>
793 + </tr>
794 + </thead>
795 + <tbody>
796 + <?php
797 + $odd = true;
798 +
799 + $installed_addons_ids_map = array_flip( $installed_addons_ids );
800 +
801 + $addon_info_by_id = array();
802 + $hide_all_addons_data = false;
803 +
804 + if ( $fs->is_whitelabeled_by_flag() ) {
805 + $hide_all_addons_data = true;
806 +
807 + foreach ( $addons_to_show as $addon_id ) {
808 + $is_addon_installed = isset( $installed_addons_ids_map[ $addon_id ] );
809 + $addon_info = $fs->_get_addon_info( $addon_id, $is_addon_installed );
810 + $is_addon_connected = $addon_info['is_connected'];
811 +
812 + $fs_addon = ( $is_addon_connected && $is_addon_installed ) ?
813 + freemius( $addon_id ) :
814 + null;
815 +
816 + $is_whitelabeled = is_object( $fs_addon ) ?
817 + $fs_addon->is_whitelabeled( true ) :
818 + $addon_info['is_whitelabeled'];
819 +
820 + if ( ! $is_whitelabeled ) {
821 + $hide_all_addons_data = false;
822 + }
823 +
824 + if ( $is_data_debug_mode ) {
825 + $is_whitelabeled = false;
826 + }
827 +
828 + $addon_info_by_id[ $addon_id ] = $addon_info;
829 + }
830 + }
831 +
832 + foreach ( $addons_to_show as $addon_id ) {
833 + $is_addon_installed = isset( $installed_addons_ids_map[ $addon_id ] );
834 +
835 + if (
836 + $hide_all_addons_data &&
837 + ! $is_addon_installed &&
838 + ! file_exists( fs_normalize_path( WP_PLUGIN_DIR . '/' . $fs->get_addon_basename( $addon_id ) ) )
839 + ) {
840 + continue;
841 + }
842 +
843 + $addon_view_params = array(
844 + 'parent_fs' => $fs,
845 + 'addon_id' => $addon_id,
846 + 'odd' => $odd,
847 + 'fs_blog_id' => $fs_blog_id,
848 + 'active_plugins_directories_map' => &$active_plugins_directories_map,
849 + 'is_addon_installed' => $is_addon_installed,
850 + 'addon_info' => isset( $addon_info_by_id[ $addon_id ] ) ?
851 + $addon_info_by_id[ $addon_id ] :
852 + $fs->_get_addon_info( $addon_id, $is_addon_installed ),
853 + 'is_whitelabeled' => ( $is_whitelabeled && ! $is_data_debug_mode )
854 + );
855 +
856 + fs_require_template(
857 + 'account/partials/addon.php',
858 + $addon_view_params
859 + );
860 +
861 + $odd = ! $odd;
862 + } ?>
863 + </tbody>
864 + </table>
865 + </div>
866 + </div>
867 + <?php endif ?>
868 +
869 + <?php $fs->do_action( 'after_account_details' ) ?>
870 +
871 + <?php
872 + if ( $show_billing ) {
873 + $view_params = array( 'id' => $VARS['id'], 'payments' => $payments );
874 + fs_require_once_template( 'account/billing.php', $view_params );
875 + fs_require_once_template( 'account/payments.php', $view_params );
876 + }
877 + ?>
878 + </div>
879 + </div>
880 + </div>
881 + </div>
882 + </div>
883 + <?php
884 + $subscription_cancellation_dialog_box_template_params = $fs->_get_subscription_cancellation_dialog_box_template_params( true );
885 + if ( ! empty( $subscription_cancellation_dialog_box_template_params ) ) {
886 + fs_require_template( 'forms/subscription-cancellation.php', $subscription_cancellation_dialog_box_template_params );
887 + }
888 + ?>
889 + <script type="text/javascript">
890 + (function ($) {
891 + var setLoading = function ($this, label) {
892 + // Set loading mode.
893 + $(document.body).css({'cursor': 'wait'});
894 +
895 + $this.css({'cursor': 'wait'});
896 +
897 + if ($this.is('input'))
898 + $this.val(label);
899 + else
900 + $this.html(label);
901 +
902 + setTimeout(function () {
903 + $this.attr('disabled', 'disabled');
904 + }, 200);
905 + };
906 +
907 + $('.fs-toggle-visibility').click(function () {
908 + var
909 + $this = $(this),
910 + $parent = $this.closest('tr'),
911 + $input = $parent.find('input');
912 +
913 + $parent.find('code').toggle();
914 + $input.toggle();
915 +
916 + if ($input.is(':visible')) {
917 + $this.html('<?php fs_esc_js_echo_x_inline( 'Hide', 'verb', 'hide', $slug ) ?>');
918 + setTimeout(function () {
919 + $input.select().focus();
920 + }, 100);
921 + }
922 + else {
923 + $this.html( '<?php fs_esc_js_echo_x_inline( 'Show', 'verb', 'show', $slug ) ?>' );
924 + }
925 + });
926 +
927 + $('.fs-toggle-tracking').click(function () {
928 + setLoading(
929 + $(this),
930 + ($(this).data('is-disconnected') ?
931 + '<?php fs_esc_js_echo_inline('Opting in', 'opting-in' ) ?>' :
932 + '<?php fs_esc_js_echo_inline('Opting out', 'opting-out' ) ?>') +
933 + '...'
934 + );
935 + });
936 +
937 + <?php
938 + $plugin_title = $fs->get_plugin_title();
939 + $processing_text = fs_esc_js_inline( 'Processing', 'processing' );
940 + $confirmation_message = sprintf(
941 + '%s %s',
942 + sprintf( fs_esc_attr_inline( 'Get updates for bleeding edge Beta versions of %s.', 'get-beta-versions', $slug ), $plugin_title ),
943 + sprintf( fs_esc_attr_inline( 'An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned.', 'beta-version-update-caution', $slug ), $plugin_title )
944 + );
945 + ?>
946 +
947 + $( '.fs-toggle-beta-mode' ).click( function () {
948 + var $checkbox = $( this ),
949 + isChecked = $checkbox.is( ':checked' );
950 +
951 + if ( ! isChecked || confirm( '<?php echo $confirmation_message ?>' ) ) {
952 + $.ajax( {
953 + url : <?php echo Freemius::ajax_url() ?>,
954 + method: 'POST',
955 + data : {
956 + action : '<?php echo $fs->get_ajax_action( 'set_beta_mode' ) ?>',
957 + security : '<?php echo $fs->get_ajax_security( 'set_beta_mode' ) ?>',
958 + is_beta : isChecked,
959 + module_id: <?php echo $fs->get_id() ?>
960 + },
961 + beforeSend: function () {
962 + $checkbox.prop( 'disabled', true );
963 + $checkbox.parent().find( 'span' ).text( '<?php echo $processing_text ?>' + '...' );
964 + },
965 + complete: function () {
966 + $checkbox.prop( 'disabled', false );
967 + $checkbox.parent().find( 'span' ).text( '<?php fs_esc_js_echo_inline( 'Join the Beta Program', 'join-beta', $slug ) ?>' );
968 + }
969 + } );
970 +
971 + return true;
972 + }
973 +
974 + return false;
975 + });
976 +
977 + $('.fs-opt-in').click(function () {
978 + setLoading($(this), '<?php fs_esc_js_echo_inline('Opting in', 'opting-in' ) ?>...');
979 + });
980 +
981 + $( '#fs_downgrade' ).submit(function( event ) {
982 + event.preventDefault();
983 +
984 + setLoading( $( this ).find( '.button' ), '<?php fs_esc_js_echo_inline( 'Downgrading', 'downgrading' ) ?>...' );
985 + });
986 +
987 + $('.fs-activate-license').click(function () {
988 + setLoading($(this), '<?php fs_esc_js_echo_inline('Activating', 'activating' ) ?>...');
989 + });
990 +
991 + var $deactivateLicenseOrCancelTrial = $( '.fs-deactivate-license, .fs-cancel-trial' ),
992 + $subscriptionCancellationModal = $( '.fs-modal-subscription-cancellation-<?php echo $fs->get_id() ?>' );
993 +
994 + if ( 0 !== $subscriptionCancellationModal.length ) {
995 + $subscriptionCancellationModal.on( '<?php echo $fs->get_action_tag( 'subscription_cancellation_action' ) ?>', function( evt, cancelSubscription ) {
996 + setLoading(
997 + $deactivateLicenseOrCancelTrial,
998 + ( ! $deactivateLicenseOrCancelTrial.hasClass( 'fs-cancel-trial' ) ?
999 + '<?php fs_esc_js_echo_inline( 'Deactivating', 'deactivating', $slug ) ?>' :
1000 + '<?php echo esc_html( sprintf( fs_text_inline( 'Cancelling %s', 'cancelling-x', $slug ), fs_text_inline( 'trial', 'trial', $slug ) ) ) ?>' ) + '...'
1001 + );
1002 +
1003 + $subscriptionCancellationModal.find( '.fs-modal-footer .button' ).addClass( 'disabled' );
1004 + $deactivateLicenseOrCancelTrial.unbind( 'click' );
1005 +
1006 + if ( false === cancelSubscription || $deactivateLicenseOrCancelTrial.hasClass( 'fs-cancel-trial' ) ) {
1007 + $subscriptionCancellationModal.find( '.fs-modal-footer .button-primary' ).text( $deactivateLicenseOrCancelTrial.text() );
1008 +
1009 + $deactivateLicenseOrCancelTrial[0].parentNode.submit();
1010 + } else {
1011 + var $form = $( 'input[value="downgrade_account"],input[value="cancel_trial"]' ).parent();
1012 + $form.prepend( '<input type="hidden" name="deactivate_license" value="true" />' );
1013 +
1014 + $subscriptionCancellationModal.find( '.fs-modal-footer .button-primary' ).text( '<?php echo esc_js( sprintf(
1015 + fs_text_inline( 'Cancelling %s...', 'cancelling-x' , $slug ),
1016 + $is_paid_trial ?
1017 + fs_text_inline( 'trial', 'trial', $slug ) :
1018 + fs_text_inline( 'subscription', 'subscription', $slug )
1019 + ) ) ?>' );
1020 +
1021 + $form.submit();
1022 + }
1023 + });
1024 + }
1025 +
1026 + $deactivateLicenseOrCancelTrial.click(function() {
1027 + var $this = $( this );
1028 + if ( $this.hasClass( 'fs-cancel-trial' ) ) {
1029 + $subscriptionCancellationModal.find( '.fs-modal-panel' ).find( 'ul.subscription-actions, .fs-price-increase-warning' ).remove();
1030 + $subscriptionCancellationModal.find( '.fs-modal-panel > p' ).text( <?php echo json_encode( $cancel_trial_confirm_text ) ?> );
1031 + $subscriptionCancellationModal.trigger( 'showModal' );
1032 + } else if (confirm('<?php fs_esc_attr_echo_inline( 'Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?', 'deactivate-license-confirm', $slug ) ?>')) {
1033 + var $this = $(this);
1034 +
1035 + if ( 0 !== $subscriptionCancellationModal.length ) {
1036 + $subscriptionCancellationModal.trigger( 'showModal' );
1037 + } else {
1038 + setLoading( $this, '<?php fs_esc_js_echo_inline( 'Deactivating', 'deactivating', $slug ) ?>...' );
1039 + $this[0].parentNode.submit();
1040 + }
1041 + }
1042 +
1043 + return false;
1044 + });
1045 +
1046 + var $sitesSection = $('#fs_sites'),
1047 + $sitesTable = $sitesSection.find('.fs-scrollable-table'),
1048 + $sitesTableRows = $sitesTable.find('.fs-site-details');
1049 +
1050 + $('.fs-show-install-details').click(function(){
1051 + var installID = $(this).parents('.fs-site-details').attr('data-install-id');
1052 + $sitesSection.find('.fs-install-details[data-install-id=' + installID + ']').toggle();
1053 + });
1054 +
1055 +
1056 + var adjustColumnWidth = function($table) {
1057 + var $headerColumns = $table.find('.fs-table-head td'),
1058 + $bodyColumns = $table.find('.fs-table-body tr:first > td');
1059 +
1060 + for (var i = 0, len = $headerColumns.length; i < len; i++) {
1061 + $($headerColumns[i]).width($($bodyColumns[i]).width());
1062 + }
1063 + for (i = 0, len = $headerColumns.length; i < len; i++) {
1064 + $($bodyColumns[i]).width($($headerColumns[i]).width());
1065 + }
1066 + };
1067 +
1068 + adjustColumnWidth($sitesTable);
1069 +
1070 + $sitesSection.find('.fs-search').keyup(function(){
1071 + var search = $(this).val().trim();
1072 +
1073 + if ('' === search){
1074 + // Show all.
1075 + $sitesTableRows.show();
1076 + return;
1077 + }
1078 +
1079 + var url;
1080 +
1081 + $sitesTableRows.each(function(index){
1082 + url = $(this).find('.fs-field-url').html();
1083 +
1084 + if (-1 < url.indexOf(search)){
1085 + $(this).show();
1086 + } else {
1087 + $(this).hide();
1088 + }
1089 + });
1090 + });
1091 +
1092 + $( '.fs-toggle-whitelabel-mode' ).click( function () {
1093 + var $toggleLink = $( this );
1094 +
1095 + $.ajax( {
1096 + url : <?php echo Freemius::ajax_url() ?>,
1097 + method: 'POST',
1098 + data : {
1099 + action : '<?php echo $fs->get_ajax_action( 'toggle_whitelabel_mode' ) ?>',
1100 + security : '<?php echo $fs->get_ajax_security( 'toggle_whitelabel_mode' ) ?>',
1101 + module_id: <?php echo $fs->get_id() ?>
1102 + },
1103 + beforeSend: function () {
1104 + $toggleLink.parent().text( '<?php
1105 + $is_whitelabeled ?
1106 + fs_esc_html_echo_inline( 'Disabling white-label mode', 'disabling-whitelabel-mode' ) :
1107 + fs_esc_html_echo_inline( 'Enabling white-label mode', 'enabling-whitelabel-mode' )
1108 + ?>' + '...' );
1109 + },
1110 + complete: function () {
1111 + location.reload();
1112 + }
1113 + } );
1114 + });
1115 + })(jQuery);
1116 + </script>
1117 +<?php
1118 + if ( $has_tabs ) {
1119 + $fs->_add_tabs_after_content();
1120 + }