mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-16 11:26:57 +00:00
73 lines
1.3 KiB
JavaScript
73 lines
1.3 KiB
JavaScript
Ext.define('PVE.dc.Config', {
|
|
extend: 'PVE.panel.Config',
|
|
alias: 'widget.PVE.dc.Config',
|
|
|
|
initComponent: function() {
|
|
var me = this;
|
|
|
|
Ext.apply(me, {
|
|
title: gettext("Datacenter"),
|
|
hstateid: 'dctab',
|
|
items: [
|
|
{
|
|
title: gettext('Summary'),
|
|
xtype: 'pveDcSummary',
|
|
itemId: 'summary'
|
|
},
|
|
{
|
|
xtype: 'pveDcOptionView',
|
|
title: gettext('Options'),
|
|
itemId: 'options'
|
|
},
|
|
{
|
|
xtype: 'pveStorageView',
|
|
title: gettext('Storage'),
|
|
itemId: 'storage'
|
|
},
|
|
{
|
|
xtype: 'pveDcBackupView',
|
|
title: gettext('Backup'),
|
|
itemId: 'backup'
|
|
},
|
|
{
|
|
xtype: 'pveUserView',
|
|
title: gettext('Users'),
|
|
itemId: 'users'
|
|
},
|
|
{
|
|
xtype: 'pveGroupView',
|
|
title: gettext('Groups'),
|
|
itemId: 'groups'
|
|
},
|
|
{
|
|
xtype: 'pvePoolView',
|
|
title: gettext('Pools'),
|
|
itemId: 'pools'
|
|
},
|
|
{
|
|
xtype: 'pveACLView',
|
|
title: gettext('Permissions'),
|
|
itemId: 'permissions'
|
|
},
|
|
{
|
|
xtype: 'pveRoleView',
|
|
title: gettext('Roles'),
|
|
itemId: 'roles'
|
|
},
|
|
{
|
|
xtype: 'pveAuthView',
|
|
title: gettext('Authentication'),
|
|
itemId: 'domains'
|
|
},
|
|
{
|
|
xtype: 'pveDcHAConfig',
|
|
title: 'HA',
|
|
itemId: 'ha'
|
|
}
|
|
]
|
|
});
|
|
|
|
me.callParent();
|
|
}
|
|
});
|