]> git.proxmox.com Git - pve-manager.git/blob - www/manager/dc/Config.js
7a953c350ec10cbb5f97b749c5335b43427aad17
[pve-manager.git] / www / manager / dc / Config.js
1 Ext.define('PVE.dc.Config', {
2 extend: 'PVE.panel.Config',
3 alias: 'widget.PVE.dc.Config',
4
5 initComponent: function() {
6 var me = this;
7
8 Ext.apply(me, {
9 title: gettext("Datacenter"),
10 hstateid: 'dctab',
11 items: [
12 {
13 title: gettext('Summary'),
14 xtype: 'pveDcSummary',
15 itemId: 'summary'
16 },
17 {
18 xtype: 'pveDcOptionView',
19 title: gettext('Options'),
20 itemId: 'options'
21 },
22 {
23 xtype: 'pveStorageView',
24 title: gettext('Storage'),
25 itemId: 'storage'
26 },
27 {
28 xtype: 'pveDcBackupView',
29 title: gettext('Backup'),
30 itemId: 'backup'
31 },
32 {
33 xtype: 'pveUserView',
34 title: gettext('Users'),
35 itemId: 'users'
36 },
37 {
38 xtype: 'pveGroupView',
39 title: gettext('Groups'),
40 itemId: 'groups'
41 },
42 {
43 xtype: 'pvePoolView',
44 title: gettext('Pools'),
45 itemId: 'pools'
46 },
47 {
48 xtype: 'pveACLView',
49 title: gettext('Permissions'),
50 itemId: 'permissions'
51 },
52 {
53 xtype: 'pveRoleView',
54 title: gettext('Roles'),
55 itemId: 'roles'
56 },
57 {
58 xtype: 'pveAuthView',
59 title: gettext('Authentication'),
60 itemId: 'domains'
61 },
62 {
63 xtype: 'pveDcHAConfig',
64 title: 'HA',
65 itemId: 'ha'
66 }
67 ]
68 });
69
70 me.callParent();
71 }
72 });