| Server IP : 23.111.136.34 / Your IP : 216.73.216.136 Web Server : Apache System : Linux servidor.eurohost.com.br 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : meusitei ( 1072) PHP Version : 5.6.40 Disable Function : show_source, system, shell_exec, passthru, proc_open MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/meusitei/public_html/central/assets/js/ |
Upload File : |
/*!
* WHMCS MarketConnect Admin JS Functions
*
* @copyright Copyright (c) WHMCS Limited 2005-2017
* @license http://www.whmcs.com/license/ WHMCS Eula
*/
jQuery(document).ready(function() {
jQuery(document).on('click', '#btnMcServiceRefresh', function(e) {
e.preventDefault();
var btn = $(this);
btn.find('i').addClass('fa-spin');
$.post({
url: 'clientsservices.php',
data: btn.attr('href') + '&token=' + csrfToken,
success: function (data) {
$('#mcServiceManagementWrapper').replaceWith(data.statusOutput);
btn.find('i').removeClass('fa-spin');
}
});
});
jQuery(document).on('click', '#btnMcCancelOrder', function(e) {
swal({
title: 'Are you sure?',
html: true,
text: 'Cancelling this order will result in the service immediately ceasing to function.<br><br>You will automatically receive a credit if within the credit period. <a href="https://go.whmcs.com/1281/marketconnect-credit-terms" target="_blank">See credit period terms</a>',
type: 'warning',
showCancelButton: true,
confirmButtonText: 'Yes, cancel it',
cancelButtonText: 'No'
},
function(){
runModuleCommand('terminate');
});
});
jQuery(document).on('click', '#mcServiceManagementWrapper .btn:not(.open-modal,.btn-refresh,.btn-cancel)', function(e) {
e.preventDefault();
var button = $(this);
var request = button.attr('href');
// If button is disabled, don't execute action
if (button.attr('disabled') == 'disabled') {
return;
}
button.find('i').addClass('fa-spin').addClass('fa-spinner');
$.post('clientsservices.php', request + '&token=' + csrfToken,
function(data) {
if (data.redirectUrl) {
window.open(data.redirectUrl);
} else if (data.growl) {
if (data.growl.type == 'error') {
$.growl.error({ title: '', message: data.growl.message });
} else {
$.growl.notice({ title: '', message: data.growl.message });
}
}
button.find('i').removeClass('fa-spin').removeClass('fa-spinner');
}, 'json');
});
});