Файловый менеджер - Редактировать - /home/pimjdymy/public_html/revisionroad/themes/ee/asset/javascript/compressed/cp/updater.js
Назад
/*! * This source file is part of the open source project * ExpressionEngine (https://expressionengine.com) * * @link https://expressionengine.com/ * @copyright Copyright (c) 2003-2023, Packet Tide, LLC (https://www.packettide.com) * @license https://expressionengine.com/license Licensed under Apache License, Version 2.0 */ var Updater = { init: function () { this._lastStep = $('.updating .updater-step-work').text(); this._updaterInPlace = false; var that = this; $('.toggle').on('click', function(e) { e.preventDefault(); var toggleIs = $(this).attr('rel'); $('.'+toggleIs).toggle(); }); $('a[rel=rollback]').on('click', function(e) { e.preventDefault(); that.runStep('rollback'); }); $('body').on('click', 'a[data-post-url]', function(event) { event.preventDefault(); var form = $('<form/>', { action: $(this).data('postUrl'), method: 'post' }); form.append($('<input/>', { name: 'csrf_token', value: EE.CSRF_TOKEN })); form.appendTo('body').submit(); }); }, runStep: function(step) { if (step === undefined) { return; } $('.updating').removeClass('hidden'); $('.updater-stopped').addClass('hidden'); var that = this, action = EE.BASE + '&C=updater&M=run&step='+step; $.ajax({ type: 'POST', url: action, dataType: 'json', headers: { 'X-CSRF-TOKEN': EE.CSRF_TOKEN }, success: function(result) { if (result.messageType == 'success') { if (result.nextStep !== undefined && result.nextStep !== false) { that._updateStatus(result.message); that.runStep(result.nextStep); // If the updater is in place, we'll consider all errors 'issues' if ( ! that._updaterInPlace && result.nextStep == 'updateFiles') { that._updaterInPlace = true; } } else { window.location = EE.BASE + '&after=update'; } } else { that._showError(result); } }, error: function(data) { error = data.responseJSON; if (error === undefined) { try { error = JSON.parse(data.responseText); } catch(err) { error = { messageType: 'error', message: data.responseText, trace: [] }; } } that._showError(error); } }); }, _updateStatus: function(message) { var progress_list = $('.updater-steps'), work_class = 'updater-step-work', pass_class = 'updater-step-pass', current_item = $('.'+work_class, progress_list); // If no message or is blank, don't update if (current_item.text().indexOf(message) !== -1 || message == '') { return; } // Mark previous item as finished current_item.removeClass(work_class) .addClass(pass_class) .find('span') .remove(); // Create new item var new_item = $('<li/>', { class: work_class }).html(message + '<span>...</span>'); this._lastStep = message; progress_list.append(new_item); }, _showError: function(error, severity) { $('.updating').addClass('hidden'); var issue_box = $('.updater-stopped'), severity = this._updaterInPlace ? 'issue' : 'warn', trace_link = $('.updater-fade', issue_box), trace_container = $('.updater-stack-trace', issue_box), trace_exists = error.trace !== undefined && error.trace.length > 0, message = error.message.replace(/(?:\r\n|\r|\n)/g, '<br />'); issue_box.addClass(severity) .removeClass('hidden') .find('.alert-notice p') .html(message); $('p[class$=-choices]').addClass('hidden'); $('p.'+severity+'-choices').removeClass('hidden'); if (trace_exists) { var list = $('<ul/>'); for (var i = 0; i < error.trace.length; i++) { list.append( $('<li/>').html(error.trace[i]) ); } trace_container.append(list); } trace_link.toggleClass('hidden', ! trace_exists); trace_container.toggleClass('hidden', ! trace_exists); $('.stopped', issue_box).html(EE.lang.we_stopped_on.replace('%s', this._lastStep)); }, _showSuccess: function() { $('.box').addClass('hidden'); $('.panel').addClass('hidden'); $('.success').removeClass('hidden'); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.30 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка