-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinventis.navigation-bundle.1.4.json
More file actions
129 lines (129 loc) · 5.88 KB
/
inventis.navigation-bundle.1.4.json
File metadata and controls
129 lines (129 loc) · 5.88 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"manifests": {
"inventis/navigation-bundle": {
"manifest": {
"bundles": {
"Inventis\\Bundle\\NavigationBundle\\InventisNavigationBundle": [
"all"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/",
"src/": "%SRC_DIR%/"
}
},
"files": {
"config/packages/inventis_navigationbundle.yaml": {
"contents": [
"inventis_navigation:",
" menus:",
" # these will get translated",
" - { title: 'menu.main', alias: 'main' }",
" - { title: 'menu.meta', alias: 'meta' }",
" - { title: 'menu.legal', alias: 'legal' }",
" - { title: 'menu.footer', alias: 'footer' }",
" static_links:",
" 404:",
" title: 'static_link.404'",
" type: route_node # see classes config to determine the type you need",
"# GENERAL_CONDITIONS:",
"# title: 'static_link.general_conditions'",
"# type: route_node # see classes config to determine the type you need",
"# SOME_URL:",
"# title: 'static_link.some_url'",
"# type: url_node # see classes config to determine the type you need",
"",
" classes:",
" locale_node: App\\Entity\\Navigation\\LocaleNode",
" menu_node: App\\Entity\\Navigation\\MenuNode",
" navigation_node: App\\Entity\\Navigation\\NavigationNode",
" link_node: Inventis\\Bundle\\NavigationBundle\\Entity\\LinkNode",
" route_node: Inventis\\Bundle\\NavigationBundle\\Entity\\RouteNode",
" url_node: Inventis\\Bundle\\NavigationBundle\\Entity\\UrlNode"
],
"executable": false
},
"config/routes/inventis_navigationbundle.yaml": {
"contents": [
"inventis_navigationbundle_routing:",
" resource: \"@InventisNavigationBundle/Controller/Webadmin\"",
" type: annotation",
" prefix: /{_locale}/webadmin/navigationbundle",
""
],
"executable": false
},
"src/Entity/Navigation/LocaleNode.php": {
"contents": [
"<?php",
"",
"declare(strict_types=1);",
"",
"namespace App\\Entity\\Navigation;",
"",
"use Doctrine\\ORM\\Mapping as ORM;",
"use Inventis\\Bundle\\NavigationBundle\\Model\\LocaleNodeModel;",
"",
"/**",
" * @ORM\\Entity",
" * @ORM\\Table(name=\"navigation_locale_node\")",
" * @ORM\\ChangeTrackingPolicy(\"DEFERRED_EXPLICIT\")",
" */",
"class LocaleNode extends LocaleNodeModel",
"{",
"}",
""
],
"executable": false
},
"src/Entity/Navigation/MenuNode.php": {
"contents": [
"<?php",
"",
"declare(strict_types=1);",
"",
"namespace App\\Entity\\Navigation;",
"",
"use Doctrine\\ORM\\Mapping as ORM;",
"use Inventis\\Bundle\\NavigationBundle\\Model\\MenuNodeModel;",
"",
"/**",
" * @ORM\\Entity",
" * @ORM\\Table(name=\"navigation_menu_node\")",
" * @ORM\\ChangeTrackingPolicy(\"DEFERRED_EXPLICIT\")",
" */",
"class MenuNode extends MenuNodeModel",
"{",
"}",
""
],
"executable": false
},
"src/Entity/Navigation/NavigationNode.php": {
"contents": [
"<?php",
"",
"declare(strict_types=1);",
"",
"namespace App\\Entity\\Navigation;",
"",
"use Doctrine\\ORM\\Mapping as ORM;",
"use Inventis\\Bundle\\NavigationBundle\\Model\\NavigationNodeModel;",
"",
"/**",
" * @ORM\\Entity",
" * @ORM\\Table(name=\"navigation_node\")",
" * @ORM\\ChangeTrackingPolicy(\"DEFERRED_EXPLICIT\")",
" */",
"class NavigationNode extends NavigationNodeModel",
"{",
"}",
""
],
"executable": false
}
},
"ref": "95fe0c6590c3df570c9498bc46db35029344a15f"
}
}
}