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/security/ |
/** * @class MODx.panel.GroupsRoles * @extends MODx.FormPanel * @param {Object} config An object of configuration properties * @xtype modx-panel-groups-roles */ MODx.panel.GroupsRoles = function(config) { config = config || {}; Ext.applyIf(config,{ id: 'modx-panel-groups-roles' ,cls: 'container' ,defaults: { collapsible: false ,autoHeight: true } ,forceLayout: true ,items: [{ html: '<h2>'+_('user_group_management')+'</h2>' ,border: false ,cls: 'modx-page-header' ,id: 'modx-access-permissions-header' },MODx.getPageStructure(this.getPageTabs(config),{ id: 'modx-access-permissions-tabs' ,stateful: true ,stateId: 'access-tabpanel' ,stateEvents: ['tabchange'] ,getState:function() { return {activeTab:this.items.indexOf(this.getActiveTab())}; } })] }); MODx.panel.GroupsRoles.superclass.constructor.call(this,config); }; Ext.extend(MODx.panel.GroupsRoles,MODx.FormPanel,{ getPageTabs: function(config) { var tbs = []; if (MODx.perm.usergroup_view == 1) { tbs.push({ title: _('user_groups') ,autoHeight: true ,layout: 'form' ,items: [{ html: '<p>'+_('user_group_management_msg')+'</p>' ,bodyCssClass: 'panel-desc' ,border: false },{ title: '' ,xtype: 'modx-tree-usergroup' ,cls:'main-wrapper' }] }); } if (MODx.perm.view_role == 1) { tbs.push({ title: _('roles') ,autoHeight: true ,layout: 'form' ,items: [{ html: '<p>'+_('roles_msg')+'</p>' ,bodyCssClass: 'panel-desc' ,border: false },{ xtype: 'modx-grid-role' ,cls:'main-wrapper' ,title: '' ,preventRender: true }] }); } if (MODx.perm.policy_view == 1) { tbs.push({ title: _('policies') ,id: 'modx-panel-access-policies' ,autoHeight: true ,layout: 'form' ,items: [{ html: '<p>'+_('policy_management_msg')+'</p>' ,bodyCssClass: 'panel-desc' ,border: false },{ xtype: 'modx-grid-access-policy' ,cls:'main-wrapper' }] }); } if (MODx.perm.policy_template_view) { tbs.push({ title: _('policy_templates') ,id: 'modx-panel-access-policy-templates' ,autoHeight: true ,layout: 'form' ,items: [{ html: '<p>'+_('policy_templates.intro_msg')+'</p>' ,bodyCssClass: 'panel-desc' ,border: false },{ xtype: 'modx-grid-access-policy-templates' ,cls:'main-wrapper' }] }); } return tbs; } }); Ext.reg('modx-panel-groups-roles',MODx.panel.GroupsRoles);