| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- /**
- *
- * @class MODx.panel.AccessPolicy
- * @extends MODx.FormPanel
- * @param {Object} config An object of config properties
- * @xtype modx-panel-access-policy
- */
- MODx.panel.AccessPolicy = function(config) {
- config = config || {};
- Ext.applyIf(config,{
- url: MODx.config.connector_url
- ,baseParams: {
- action: 'security/access/policy/update'
- ,id: MODx.request.id
- }
- ,id: 'modx-panel-access-policy'
- ,cls: 'container form-with-labels'
- ,class_key: 'modAccessPolicy'
- ,plugin: ''
- ,bodyStyle: ''
- ,defaults: { collapsible: false ,autoHeight: true }
- ,items: [{
- html: _('policy')+(config.record ? ': '+config.record.name : '')
- ,id: 'modx-policy-header'
- ,xtype: 'modx-header'
- },{
- xtype: 'modx-tabs'
- ,defaults: {
- autoHeight: true
- ,border: true
- ,bodyCssClass: 'tab-panel-wrapper'
- }
- ,forceLayout: true
- ,deferredRender: false
- ,items: [{
- title: _('policy')
- ,layout: 'form'
- ,items: [{
- html: '<p>'+_('policy_desc')+'</p>'
- ,xtype: 'modx-description'
- },{
- xtype: 'panel'
- ,border: false
- ,cls:'main-wrapper'
- ,layout: 'form'
- ,labelAlign: 'top'
- ,labelSeparator: ''
- ,items: [{
- xtype: 'hidden'
- ,name: 'id'
- ,value: config.plugin
- },{
- xtype: 'textfield'
- ,fieldLabel: _('name')+'<span class="required">*</span>'
- ,description: MODx.expandHelp ? '' : _('policy_desc_name')
- ,name: 'name'
- ,maxLength: 255
- ,enableKeyEvents: true
- ,allowBlank: false
- ,anchor: '100%'
- ,listeners: {
- 'keyup': {scope:this,fn:function(f,e) {
- Ext.getCmp('modx-policy-header').getEl().update(_('policy')+': '+f.getValue());
- }}
- }
- },{
- xtype: MODx.expandHelp ? 'label' : 'hidden'
- ,forId: 'modx-policy-name'
- ,html: _('policy_desc_name')
- ,cls: 'desc-under'
- },{
- xtype: 'textarea'
- ,fieldLabel: _('description')
- ,description: MODx.expandHelp ? '' : _('policy_desc_description')
- ,name: 'description'
- ,anchor: '100%'
- ,grow: true
- },{
- xtype: MODx.expandHelp ? 'label' : 'hidden'
- ,forId: 'modx-policy-description'
- ,html: _('policy_desc_description')
- ,cls: 'desc-under'
- },{
- xtype: 'textfield'
- ,fieldLabel: _('lexicon')
- ,description: MODx.expandHelp ? '' : _('policy_desc_lexicon')
- ,name: 'lexicon'
- ,allowBlank: true
- ,anchor: '100%'
- ,value: 'permissions'
- },{
- xtype: MODx.expandHelp ? 'label' : 'hidden'
- ,forId: 'modx-policy-lexicon'
- ,html: _('policy_desc_lexicon')
- ,cls: 'desc-under'
- }]
- },{
- html: '<p>'+_('permissions_desc')+'</p>'
- ,xtype: 'modx-description'
- },{
- xtype: 'modx-grid-policy-permissions'
- ,cls:'main-wrapper'
- ,policy: MODx.request.id
- ,autoHeight: true
- ,preventRender: true
- }]
- }]
- }]
- ,listeners: {
- 'setup': {fn:this.setup,scope:this}
- ,'success': {fn:this.success,scope:this}
- ,'beforeSubmit': {fn:this.beforeSubmit,scope:this}
- }
- });
- MODx.panel.AccessPolicy.superclass.constructor.call(this,config);
- };
- Ext.extend(MODx.panel.AccessPolicy,MODx.FormPanel,{
- initialized: false
- ,setup: function() {
- if (this.config.policy === '' || this.config.policy === 0) {
- this.fireEvent('ready');
- return false;
- }
- if (!this.initialized) {
- var r = this.config.record;
- this.getForm().setValues(r);
- var g = Ext.getCmp('modx-grid-policy-permissions');
- if (g) { g.getStore().loadData(r.permissions); }
- this.fireEvent('ready');
- MODx.fireEvent('ready');
- this.initialized = true;
- }
- }
- ,beforeSubmit: function(o) {
- var g = Ext.getCmp('modx-grid-policy-permissions');
- Ext.apply(o.form.baseParams,{
- permissions: g ? g.encode() : {}
- });
- }
- ,success: function(o) {
- Ext.getCmp('modx-grid-policy-permissions').getStore().commitChanges();
- }
- });
- Ext.reg('modx-panel-access-policy',MODx.panel.AccessPolicy);
- MODx.grid.PolicyPermissions = function(config) {
- config = config || {};
- var ac = new Ext.ux.grid.CheckColumn({
- header: _('enabled')
- ,dataIndex: 'enabled'
- ,width: 40
- ,sortable: true
- });
- Ext.applyIf(config,{
- id: 'modx-grid-policy-permissions'
- ,url: MODx.config.connector_url
- ,baseParams: {
- action: 'security/access/policy/getAttributes'
- }
- ,cls: 'modx-grid modx-policy-permissions-grid'
- ,fields: ['name','description','description_trans','value','enabled']
- ,plugins: ac
- ,columns: [{
- header: _('name')
- ,dataIndex: 'name'
- ,width: 100
- ,editor: { xtype: 'textfield', renderer: true }
- },{
- header: _('description')
- ,dataIndex: 'description_trans'
- ,width: 250
- ,editable: false
- },ac]
- ,data: []
- ,width: '90%'
- ,height: 300
- ,maxHeight: 300
- ,autosave: false
- ,autoExpandColumn: 'name'
- });
- MODx.grid.PolicyPermissions.superclass.constructor.call(this,config);
- this.propRecord = new Ext.data.Record.create(['name','description','access','value']);
- this.on('rowclick',this.onPermRowClick,this);
- };
- Ext.extend(MODx.grid.PolicyPermissions,MODx.grid.LocalGrid,{
- onPermRowClick: function(g,ri,e) {
- var s = this.getStore();
- if (!s || typeof ri == 'undefined') { return; }
- var r = s.getAt(ri);
- r.set('enabled',r.get('enabled') ? false : true);
- r.commit();
- }
- });
- Ext.reg('modx-grid-policy-permissions',MODx.grid.PolicyPermissions);
- MODx.combo.AccessPolicyTemplate = function(config) {
- config = config || {};
- Ext.applyIf(config,{
- name: 'template'
- ,hiddenName: 'template'
- ,fields: ['id','name','description']
- ,forceSelection: true
- ,typeAhead: false
- ,editable: false
- ,allowBlank: false
- // ,listWidth: 300
- ,pageSize: 20
- ,url: MODx.config.connector_url
- ,baseParams: {
- action: 'security/access/policy/template/getlist'
- }
- ,tpl: new Ext.XTemplate('<tpl for="."><div class="x-combo-list-item"><span style="font-weight: bold">{name:htmlEncode}</span>'
- ,'<p style="margin: 0; font-size: 11px; color: gray;">{description:htmlEncode}</p></div></tpl>')
- });
- MODx.combo.AccessPolicyTemplate.superclass.constructor.call(this,config);
- };
- Ext.extend(MODx.combo.AccessPolicyTemplate,MODx.combo.ComboBox);
- Ext.reg('modx-combo-access-policy-template',MODx.combo.AccessPolicyTemplate);
|