This repository was archived by the owner on May 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstructure.js
More file actions
81 lines (80 loc) · 1.21 KB
/
structure.js
File metadata and controls
81 lines (80 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
var children = [{
text:'Model',
iconCls: 'settings',
children:[{
text:'Object 1',
iconCls: 'audio',
children:[{
text: 'Properties',
iconCls: 'open',
children:[{
text: 'Sub sub child',
iconCls: 'delete'
}]
}, {
text: 'TCA',
leaf: true,
iconCls: 'edit'
}, {
text: 'Localization',
leaf: true,
iconCls: 'delete'
}]
}, {
text:'Object 2',
iconCls: 'font',
children:[{
text: 'Properties',
leaf: true,
iconCls: 'open'
}, {
text: 'TCA',
leaf: true,
iconCls: 'edit'
}, {
text: 'Localization',
leaf: true,
iconCls: 'delete'
}]
}]
}, {
text: 'Controllers',
iconCls: 'development',
children: [{
text: 'IndexController',
leaf: true,
iconCls: 'contact'
}, {
text: 'ObjectController',
leaf: true,
iconCls: 'italic'
}]
},{
text:'Frontend Plugins',
iconCls: 'games',
children:[{
text:'Plugin 1',
leaf:true,
iconCls: 'bold'
}, {
text:'Plugin 2',
leaf:true,
iconCls: 'underline'
}]
}, {
text: 'Backend Modules',
iconCls: 'accessories',
children:[{
text: 'Module 1',
leaf: true,
iconCls: 'text'
}]
}, {
text: 'Scheduler tasks',
iconCls: 'graphics',
children:[{
text: 'Task 1',
leaf: true,
iconCls: 'video'
}]
}];