Ext.define('PMG.UserManagement', { extend: 'Ext.tab.Panel', alias: 'widget.pmgUserManagement', title: gettext('Configuration') + ': ' + gettext('User Management'), border: false, defaults: { border: false }, items: [ { xtype: "pmgUserView", title: gettext('Local'), itemId: 'local', iconCls: 'fa fa-user', }, { xtype: 'pmgLDAPConfig', title: 'LDAP', itemId: 'ldap', iconCls: 'fa fa-address-book-o', }, { xtype: 'pmgFetchmailView', title: 'Fetchmail', itemId: 'pop', iconCls: 'fa fa-reply-all', }, ], });