modxcms/revolution

View on GitHub
manager/assets/modext/sections/fc/list.js

Summary

Maintainability
A
0 mins
Test Coverage
MODx.page.FormCustomization = function(config) {
    config = config || {};
    Ext.applyIf(config,{
        components: [{
            xtype: 'modx-panel-fc-profiles'
        }]
        ,buttons: [{
            text: _('help_ex')
            ,id: 'modx-abtn-help'
            ,handler: MODx.loadHelpPane
        }]
    });
    MODx.page.FormCustomization.superclass.constructor.call(this,config);
};
Ext.extend(MODx.page.FormCustomization,MODx.Component);
Ext.reg('modx-page-form-customization',MODx.page.FormCustomization);