Server : Apache System : Linux indy02.toastserver.com 3.10.0-962.3.2.lve1.5.85.el7.x86_64 #1 SMP Thu Apr 18 15:18:36 UTC 2024 x86_64 User : palandch ( 1163) PHP Version : 7.1.33 Disable Function : NONE Directory : /home/palandch/public_html/manager/assets/modext/widgets/source/ |
/** * Loads a grid of modAccessContexts. * * @class MODx.grid.AccessContext * @extends MODx.grid.Grid * @param {Object} config An object of options. * @xtype modx-grid-access-context */ MODx.grid.MediaSourceAccess = function(config) { config = config || {}; Ext.applyIf(config,{ id: 'modx-grid-source-access' ,fields: ['id','target','target_name','principal_class','principal','principal_name','authority','authority_name','policy','policy_name','context_key'] ,type: 'modAccessMediaSource' ,paging: true ,columns: [ { header: _('user_group') ,dataIndex: 'principal_name' ,width: 120 } ,{ header: _('minimum_role') ,dataIndex: 'authority_name' ,width: 50 } ,{ header: _('policy') ,dataIndex: 'policy_name' ,width: 175 } ] ,tbar: [{ text: _('source_access_add') ,scope: this ,handler: this.createAcl }] }); MODx.grid.MediaSourceAccess.superclass.constructor.call(this,config); this.propRecord = Ext.data.Record.create(config.fields); }; Ext.extend(MODx.grid.MediaSourceAccess,MODx.grid.LocalGrid,{ combos: {} ,windows: {} ,createAcl: function(itm,e) { var r = { target: this.config.source ,principal_class: 'modUserGroup' }; if (!this.windows.access_add) { this.windows.access_add = MODx.load({ xtype: 'modx-window-source-access-create' ,record: r ,listeners: { 'success': {fn:function(vs) { var rec = new this.propRecord(vs); this.getStore().add(rec); },scope:this} } }); } this.windows.access_add.fp.getForm().reset(); this.windows.access_add.setValues(r); this.windows.access_add.show(e.target); } ,editAcl: function(itm,e) { var r = this.menu.record; Ext.applyIf(r,{ source: r.target ,user_group: r.principal }); if (!this.windows.update_acl) { this.windows.update_acl = MODx.load({ xtype: 'modx-window-source-access-update' ,acl: r.id ,record: r ,listeners: { 'success': {fn:function(vs) { var s = this.getStore(); var rec; try { rec = s.getAt(s.find('id',vs.id)); } catch(e) {} if (rec) { for (var k in vs) { rec.set(k,vs[k]); } rec.commit(); } },scope:this} } }); } this.windows.update_acl.setValues(r); this.windows.update_acl.show(e.target); } ,removeAcl: function(itm,e) { MODx.msg.confirm({ title: _('source_access_remove') ,text: _('source_access_remove_confirm') ,url: this.config.url ,params: { action: 'removeAcl' ,id: this.menu.record.id ,type: this.config.type || 'modAccessMediaSource' } ,listeners: { 'success': {fn:this.refresh,scope:this} } }); } ,getMenu: function() { return [{ text: _('source_access_update') ,handler: this.editAcl },{ text: _('source_access_remove') ,handler: this.remove.createDelegate(this,[{ title: _('source_access_remove') ,text: _('source_access_remove_confirm') }]) }]; } }); Ext.reg('modx-grid-source-access',MODx.grid.MediaSourceAccess); MODx.window.UpdateSourceAccess = function(config) { config = config || {}; var r = config.record; this.ident = config.ident || 'uactx'+Ext.id(); Ext.applyIf(config,{ title: _('source_access_update') ,height: 250 ,width: 350 ,type: 'modAccessMediaSource' ,acl: 0 ,fields: [{ xtype: 'hidden' ,name: 'id' ,id: 'modx-'+this.ident+'-id' ,value: r.id },{ xtype: 'hidden' ,name: 'target' ,id: 'modx-'+this.ident+'-target' ,value: r.source },{ xtype: 'hidden' ,name: 'context_key' ,hiddenName: 'context_key' ,id: 'modx-'+this.ident+'-context_key' ,value: 'mgr' },{ xtype: 'modx-combo-usergroup' ,fieldLabel: _('user_group') ,name: 'principal' ,hiddenName: 'principal' ,id: 'modx-'+this.ident+'-principal' ,value: r.principal || '' ,baseParams: { action: 'getList' ,combo: '1' } ,anchor: '100%' },{ xtype: 'modx-combo-authority' ,fieldLabel: _('minimum_role') ,name: 'authority' ,hiddenName: 'authority' ,id: 'modx-'+this.ident+'-authority' ,anchor: '100%' ,value: r.authority },{ xtype: 'modx-combo-policy' ,fieldLabel: _('policy') ,name: 'policy' ,hiddenName: 'policy' ,id: 'modx-'+this.ident+'-policy' ,value: r.policy || '' ,baseParams: { action: 'getList' ,combo: '1' } ,anchor: '100%' },{ xtype: 'hidden' ,name: 'principal_class' ,id: 'modx-'+this.ident+'-principal-class' ,value: 'modUserGroup' },{ xtype: 'hidden' ,name: 'id' ,id: 'modx-'+this.ident+'-id' ,value: r.id }] }); MODx.window.UpdateSourceAccess.superclass.constructor.call(this,config); }; Ext.extend(MODx.window.UpdateSourceAccess,MODx.Window,{ submit: function() { var f = this.fp.getForm(); var prf = f.findField('principal'); var pof = f.findField('policy'); var auf = f.findField('authority'); var r = f.getValues(); if (prf) { r.principal_name = prf.getRawValue(); } if (pof) { r.policy_name = pof.getRawValue(); } if (auf) { r.authority_name = auf.getRawValue(); } if (this.fp.getForm().isValid()) { if (this.fireEvent('success',r)) { this.fp.getForm().reset(); this.hide(); return true; } } else { MODx.msg.alert(_('error'),_('user_err_ns')); } return true; } }); Ext.reg('modx-window-source-access-update',MODx.window.UpdateSourceAccess); MODx.window.CreateSourceAccess = function(config) { config = config || {}; var r = config.record; this.ident = config.ident || 'cactx'+Ext.id(); Ext.applyIf(config,{ title: _('source_access_add') ,height: 250 ,width: 350 ,type: 'modAccessMediaSource' ,acl: 0 ,fields: [{ xtype: 'hidden' ,name: 'target' ,id: 'modx-'+this.ident+'-target' ,value: config.target || 0 },{ xtype: 'hidden' ,name: 'principal_class' ,id: 'modx-'+this.ident+'-principal-class' ,value: 'modUserGroup' },{ xtype: 'hidden' ,name: 'context_key' ,hiddenName: 'context_key' ,id: 'modx-'+this.ident+'-context_key' ,value: 'mgr' },{ xtype: 'modx-combo-usergroup' ,fieldLabel: _('user_group') ,name: 'principal' ,hiddenName: 'principal' ,id: 'modx-'+this.ident+'-usergroup' ,baseParams: { action: 'getList' ,combo: '1' } ,anchor: '100%' },{ xtype: 'modx-combo-authority' ,fieldLabel: _('minimum_role') ,name: 'authority' ,hiddenName: 'authority' ,value: 9999 ,id: 'modx-'+this.ident+'-authority' ,anchor: '100%' },{ xtype: 'modx-combo-policy' ,fieldLabel: _('policy') ,name: 'policy' ,hiddenName: 'policy' ,id: 'modx-'+this.ident+'-policy' ,baseParams: { action: 'getList' ,group: 'MediaSource' } ,anchor: '100%' }] }); MODx.window.CreateSourceAccess.superclass.constructor.call(this,config); }; Ext.extend(MODx.window.CreateSourceAccess,MODx.Window,{ submit: function() { var f = this.fp.getForm(); var prf = f.findField('principal'); var pof = f.findField('policy'); var auf = f.findField('authority'); var r = f.getValues(); if (prf) { r.principal_name = prf.getRawValue(); } if (pof) { r.policy_name = pof.getRawValue(); } if (auf) { r.authority_name = auf.getRawValue(); } if (this.fp.getForm().isValid()) { if (this.fireEvent('success',r)) { this.fp.getForm().reset(); this.hide(); return true; } } else { MODx.msg.alert(_('error'),_('user_err_ns')); } return true; } }); Ext.reg('modx-window-source-access-create',MODx.window.CreateSourceAccess);