| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- /**
- * Loads the error log page
- *
- * @class MODx.page.ErrorLog
- * @extends MODx.Component
- * @param {Object} config An object of config properties
- * @xtype modx-page-system-event
- */
- MODx.page.ErrorLog = function(config) {
- config = config || {};
- Ext.applyIf(config,{
- formpanel: 'modx-panel-error-log'
- ,buttons: [{
- text: _('ext_refresh')
- ,id: 'modx-abtn-refresh'
- ,cls: 'primary-button'
- ,handler: this.refreshLog
- ,scope: this
- ,hidden: config.record.tooLarge
- },{
- text: _('clear')
- ,id: 'modx-abtn-clear'
- ,handler: this.clear
- ,scope: this
- ,hidden: MODx.hasEraseErrorLog ? false : true
- },{
- text: _('cancel')
- ,id: 'modx-abtn-cancel'
- }]
- ,components: [{
- xtype: 'modx-panel-error-log'
- ,record: config.record || {}
- }]
- });
- MODx.page.ErrorLog.superclass.constructor.call(this,config);
- if (!config.record.tooLarge) {
- this.refreshLog();
- }
- };
- Ext.extend(MODx.page.ErrorLog,MODx.Component,{
- clear: function() {
- var panel = Ext.getCmp('modx-panel-error-log');
- panel.el.mask(_('working'));
- MODx.Ajax.request({
- url: panel.config.url
- ,params: {
- action: 'system/errorlog/clear'
- }
- ,listeners: {
- 'success': {fn:function(r) {
- this.el.unmask();
- if (!r.object.tooLarge && this.config.record.tooLarge) {
- location.href = location.href;
- } else {
- this.getForm().setValues(r.object);
- }
- },scope:panel}
- }
- });
- }
- ,refreshLog: function() {
- var panel = Ext.getCmp('modx-panel-error-log');
- panel.el.mask(_('working'));
- MODx.Ajax.request({
- url: panel.config.url
- ,params: {
- action: 'system/errorlog/get'
- }
- ,listeners: {
- 'success': {fn:function(r) {
- this.el.unmask();
- if (r.object.tooLarge) {
- location.href = location.href;
- } else {
- this.getForm().setValues(r.object);
- panel.setTextareaHeight();
- }
- },scope:panel}
- }
- });
- }
- });
- Ext.reg('modx-page-error-log',MODx.page.ErrorLog);
|