Server IP : 213.176.29.180 / Your IP : 3.144.6.9 Web Server : Apache System : Linux 213.176.29.180.hostiran.name 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64 User : webtaragh ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/webtaragh/public_html/whmcs/assets/js/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
/*! * WHMCS MarketConnect Admin JS Functions * * @copyright Copyright (c) WHMCS Limited 2005-2022 * @license https://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'); WHMCS.http.jqClient.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(); $('#growls').fadeOut('fast').remove(); $('.successbox,.errorbox').slideUp('fast').remove(); var button = $(this); var request = button.attr('href'); var buttonIcon = button.find('i'); var iconState = buttonIcon.attr('class'); // If button is disabled, don't execute action if (button.attr('disabled') === 'disabled') { return; } buttonIcon.removeClass().addClass('fas fa-spin fa-spinner'); WHMCS.http.jqClient.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 }); $('#btnMcServiceRefresh').click(); } } else { $.growl.error({ title: '', message: 'Unknown response' }); console.error('[WHMCS] Unknown response: ' + JSON.stringify(data)); } }, 'json').fail(function (xhr) { var response = (xhr.responseText != '' ? xhr.responseText : xhr.statusText); $.growl.error({ title: '', message: response }) }).always(function (xhr) { buttonIcon.removeClass().addClass(iconState); }); }) .on('click', '.feature-menu-item', function(e) { e.preventDefault(); var self = jQuery(this), name = self.data('name'), shownMenu = jQuery('.feature-menu-item.shown'), shownItem = jQuery('.feature-info-item.shown'), target = jQuery('.feature-info-item[data-name="' + name + '"]'); shownMenu.removeClass('shown'); self.addClass('shown'); shownItem.slideUp('fast', function() { jQuery(this).removeClass('shown'); target.hide().addClass('shown').slideDown('fast'); }) }); });