%PDF- %PDF-
Direktori : /var/www/html/itworks/wp-content/plugins/learnpress/assets/js/admin/ |
Current File : /var/www/html/itworks/wp-content/plugins/learnpress/assets/js/admin/admin-tools.js |
;(function ($) { var $doc = $(document), isRunning = false; function installSampleCourse(e) { e.preventDefault(); var $button = $(this); if (isRunning) { return; } if (!confirm(lpGlobalSettings.i18n.confirm_install_sample_data)) { return; } $button.addClass('disabled').html($button.data('installing-text')); $('.lp-install-sample-data-response').remove(); isRunning = true; $.ajax({ url: $button.attr('href'), data: $('.lp-install-sample-data-options').serializeJSON(), success: function (response) { $button.removeClass('disabled').html($button.data('text')); isRunning = false; $(response).insertBefore($button.parent()); }, error: function () { $button.removeClass('disabled').html($button.data('text')); isRunning = false; } }); } function uninstallSampleCourse(e) { e.preventDefault(); var $button = $(this); if (isRunning) { return; } if (!confirm(lpGlobalSettings.i18n.confirm_uninstall_sample_data)) { return; } $button.addClass('disabled').html($button.data('uninstalling-text')); isRunning = true; $.ajax({ url: $button.attr('href'), success: function (response) { $button.removeClass('disabled').html($button.data('text')); isRunning = false; }, error: function () { $button.removeClass('disabled').html($button.data('text')); isRunning = false; } }) } function clearHardCache(e) { e.preventDefault(); var $button = $(this); if ($button.hasClass('disabled')) { return; } $button.addClass('disabled').html($button.data('cleaning-text')); $.ajax({ url: $button.attr('href'), data: {}, success: function (response) { $button.removeClass('disabled').html($button.data('text')); }, error: function () { $button.removeClass('disabled').html($button.data('text')); } }); } function toggleHardCache() { $.ajax({ url: 'admin.php?page=lp-toggle-hard-cache-option', data: {v: this.checked ? 'yes' : 'no'}, success: function (response) { }, error: function () { } }); } $doc.on('click', '#learn-press-install-sample-data', installSampleCourse) .on('click', '#learn-press-uninstall-sample-data', uninstallSampleCourse) .on('click', '#learn-press-clear-cache', clearHardCache) .on('click', 'input[name="enable_hard_cache"]', toggleHardCache) .on('click', '#learn-press-install-sample-data-options', function (e) { e.preventDefault(); $('.lp-install-sample-data-options').toggleClass('hide-if-js'); }) })(jQuery);