modxcms/revolution

View on GitHub
manager/assets/modext/sections/security/role/list.js

Summary

Maintainability
A
0 mins
Test Coverage
Ext.onReady(function() {
    MODx.load({ xtype: 'page-roles' });
});

/**
 * Loads the Role management page
 *
 * @class MODx.page.ListRoles
 * @extends MODx.Component
 * @param {Object} config An object of config properties
 * @xtype page-roles
 */
MODx.page.ListRoles = function(config) {
    config = config || {};
    Ext.applyIf(config,{
        buttons: [{
            process: 'new'
            ,text: _('new')
            ,id: 'modx-abtn-new'
            ,cls: 'primary-button'
            ,params: {
                a:'security/role/create'
            }
        },{
            text: _('cancel')
            ,id: 'modx-abtn-cancel'
        },{
            text: _('help_ex')
            ,id: 'modx-abtn-help'
            ,handler: MODx.loadHelpPane
        }]
        ,components: [{
            xtype: 'grid-role'
            ,renderTo: 'role_grid'
        }]
    });
    MODx.page.ListRoles.superclass.constructor.call(this,config);
};
Ext.extend(MODx.page.ListRoles,MODx.Component);
Ext.reg('page-roles',MODx.page.ListRoles);