]> git.proxmox.com Git - pve-manager.git/blob - www/manager/dc/Config.js
imported from svn 'pve-manager/pve2'
[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: "Datacenter",
10 hstateid: 'dctab',
11 items: [
12 {
13 title: 'Summary',
14 itemId: 'summary',
15 html: 'summary '
16 },
17 {
18 xtype: 'pveDcOptionView',
19 title: 'Options',
20 itemId: 'options'
21 },
22 {
23 xtype: 'pveStorageView',
24 title: 'Storage',
25 itemId: 'storage'
26 },
27 {
28 title: 'Backup',
29 itemId: 'backup',
30 html: 'Backup/vzdump Configuration - not implemented!'
31 },
32 {
33 xtype: 'pveUserView',
34 title: 'Users',
35 itemId: 'users'
36 },
37 {
38 xtype: 'pveGroupView',
39 title: 'Groups',
40 itemId: 'groups'
41 },
42 {
43 xtype: 'pveACLView',
44 title: 'Permissions',
45 itemId: 'permissions'
46 },
47 {
48 xtype: 'pveRoleView',
49 title: 'Roles',
50 itemId: 'roles'
51 },
52 {
53 xtype: 'pveAuthView',
54 title: 'Authentication',
55 itemId: 'domains'
56 }
57 ]
58 });
59
60 me.callParent();
61 }
62 });