You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

182 lines
5.2 KiB
PHP

<?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 1.2.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* @var array $VARS
* @var Freemius $fs
*/
$fs = freemius( $VARS['id'] );
$slug = $fs->get_slug();
$message_header = sprintf(
/* translators: %1$s: Number of trial days; %2$s: Plan name; */
fs_text_inline( 'You are 1-click away from starting your %1$s-day free trial of the %2$s plan.', 'start-trial-prompt-header', $slug ),
'<span class="var-trial_period"></span>',
'<span class="var-plan_title"></span>'
);
$message_content = sprintf(
/* translators: %s: Link to freemius.com */
fs_text_inline( 'For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial.', 'start-trial-prompt-message', $slug ),
$fs->get_module_type(),
sprintf(
'<a href="%s" target="_blank" rel="noopener">%s</a>',
'https://freemius.com',
'freemius.com'
)
);
$modal_content_html = <<< HTML
<div class="notice notice-error inline"><p></p></div>
<h3>{$message_header}</h3>
<p>{$message_content}</p>
HTML;
fs_enqueue_local_style( 'fs_dialog_boxes', '/admin/dialog-boxes.css' );
?>
<script type="text/javascript">
(function ($) {
$(document).ready(function () {
var modalContentHtml = <?php echo json_encode( $modal_content_html ); ?>,
modalHtml =
'<div class="fs-modal fs-modal-license-key-resend">'
+ ' <div class="fs-modal-dialog">'
+ ' <div class="fs-modal-header">'
+ ' <h4><?php echo esc_js( fs_text_x_inline( 'Start free trial', 'call to action', 'start-free-trial', $slug ) ) ?></h4>'
+ ' </div>'
+ ' <div class="fs-modal-body">' + modalContentHtml + '</div>'
+ ' <div class="fs-modal-footer">'
+ ' <button class="button button-secondary button-close">' + <?php fs_json_encode_echo_inline( 'Cancel', 'cancel', $slug ) ?> +'</button>'
+ ' <button class="button button-primary button-connect">' + <?php fs_json_encode_echo_inline( 'Approve & Start Trial', 'approve-start-trial', $slug ) ?> +'</button>'
+ ' </div>'
+ ' </div>'
+ '</div>',
$modal = $( modalHtml ),
trialData;
$modal.appendTo($('body'));
var $errorNotice = $modal.find('.notice-error');
registerEventHandlers();
function registerEventHandlers() {
$modal.on('click', '.button-close', function () {
closeModal();
return false;
});
$modal.on('click', '.button-connect', function (evt) {
evt.preventDefault();
var $button = $(this);
$.ajax({
url : <?php echo Freemius::ajax_url() ?>,
method : 'POST',
data : {
action : '<?php echo $fs->get_ajax_action( 'start_trial' ) ?>',
security : '<?php echo $fs->get_ajax_security( 'start_trial' ) ?>',
module_id: '<?php echo $fs->get_id() ?>',
trial : trialData
},
beforeSend: function () {
// Disable all buttons during trial activation.
$modal.find('.button').prop('disabled', true);
$button.text(<?php fs_json_encode_echo_inline( 'Starting trial', 'starting-trial', $slug ) ?> + '...');
setLoadingMode();
},
success : function (resultObj) {
if (resultObj.success) {
$button.text(<?php fs_json_encode_echo_inline( 'Please wait', 'please-wait', $slug ) ?> + '...');
// Redirect to the "Account" page and sync the license.
window.location.href = resultObj.data.next_page;
} else {
$button.text(<?php fs_json_encode_echo( 'approve-start-trial', $slug ) ?>);
resetLoadingMode();
showError(resultObj.error);
}
}
});
});
}
window.openTrialConfirmationModal = function showModal(data) {
resetModal();
// Display the dialog box.
$modal.addClass('active');
trialData = data;
var $modalBody = $modal.find('.fs-modal-body'),
$var;
for (var key in data) {
if (data.hasOwnProperty(key)) {
$var = $modalBody.find('.var-' + key);
if ($var.length > 0)
$var.html(data[key]);
}
}
$('body').addClass('has-fs-modal');
};
function closeModal() {
$modal.removeClass('active');
$('body').removeClass('has-fs-modal');
}
function resetModal() {
hideError();
}
function hideError() {
$errorNotice.hide();
}
function setLoadingMode() {
$modal.find('.button')
// Re-enable all buttons.
.prop('disabled', trialData)
// Stop loading cursor.
.css({'cursor': 'wait'});
// Stop loading cursor.
$(document.body).css({'cursor': 'wait'});
}
function resetLoadingMode() {
$modal.find('.button')
// Re-enable all buttons.
.prop('disabled', false)
// Stop loading cursor.
.css({'cursor': 'initial'});
// Stop loading cursor.
$(document.body).css({'cursor': 'initial'});
}
function showError(msg) {
$errorNotice.find(' > p').html(msg);
$errorNotice.show();
}
});
})(jQuery);
</script>