-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzolinga.json
81 lines (81 loc) · 1.77 KB
/
zolinga.json
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
{
"name": "Zolinga CMS",
"version": "1.0",
"description": "File-based CMS.",
"authors": [
"Daniel Sevcik <[email protected]>"
],
"attributes": {},
"listen": [
{
"description": "CMS Service.",
"service": "cms",
"class": "\\Zolinga\\Cms\\PageServer",
"origin": [
"*"
]
},
{
"description": "CMS server.",
"event": "system:content",
"class": "\\Zolinga\\Cms\\PageServer",
"method": "onContent",
"origin": [
"remote",
"cli"
]
},
{
"description": "CMS Tree representation.",
"service": "cmsTree",
"class": "\\Zolinga\\Cms\\Tree\\TreeRoot",
"origin": [
"*"
]
},
{
"description": "CMS page menu.",
"event": "cms:content:cms-menu",
"class": "\\Zolinga\\Cms\\PageMenu",
"method": "onCmsMenu",
"origin": [
"internal"
]
},
{
"description": "Adds CMS Elements Article to :ref WIKI page.",
"event": "system:wiki:ref:discovery",
"class": "\\Zolinga\\Cms\\WikiCmsElements",
"method": "onWikiRefDiscovery",
"origin": [
"internal"
]
}
],
"emit": [
{
"description": "Parse custom HTML element.",
"event": "cms:content:*",
"class": "\\Zolinga\\Cms\\Events\\ContentElementEvent",
"origin": [
"internal"
]
}
],
"webComponents": [
{
"tag": "cms-menu",
"description": "CMS menu.",
"module": "web-components/cms-menu/cms-menu.js"
}
],
"autoload": {
"Zolinga\\Cms\\": "src/"
},
"config": {
"cms": {
"# menuCache": "false: disalbe caching of menu structure. All .html files will be scanned on each request. Only for development.",
"menuCache": true
}
}
}