@@ -2,9 +2,16 @@ cmf_sonata_phpcr_admin_integration:
2
2
bundles :
3
3
seo : ~
4
4
core : ~
5
+ menu : ~
5
6
content :
6
7
ivory_ckeditor : { config_name: cmf_sonata_admin_integration }
7
8
9
+ routing :
10
+ basepath : /test/routing
11
+ block :
12
+ basepath : /test/blocks
13
+ menu_basepath : /test/menus
14
+
8
15
framework :
9
16
translator : { enabled: true, fallback: en }
10
17
serializer : true
@@ -13,8 +20,15 @@ cmf_seo:
13
20
title : " Default | %%content_title%%"
14
21
description : " Default description. %%content_description%%"
15
22
original_route_pattern : canonical
23
+ persistence : { phpcr: true }
24
+ alternate_locale : ~
16
25
17
26
cmf_routing :
27
+ dynamic :
28
+ locales : [de, en]
29
+ persistence :
30
+ phpcr :
31
+ route_basepaths : [/test/routing]
18
32
chain :
19
33
routers_by_id :
20
34
cmf_routing.dynamic_router : 20
24
38
exception_controller : cmf_seo.error.suggestion_provider.controller:listAction
25
39
26
40
cmf_core :
41
+ persistence :
42
+ phpcr :
43
+ basepath : /test
27
44
multilang :
28
45
locales : [en, de]
29
46
30
47
ivory_ck_editor :
31
48
configs :
32
49
cmf_sonata_admin_integration : { toolbar: standard }
50
+
51
+ cmf_menu :
52
+ persistence :
53
+ phpcr :
54
+ menu_basepath : /test/menus
55
+
56
+ services :
57
+ sonata.admin.seo_content :
58
+ class : Symfony\Cmf\Bundle\SonataPhpcrAdminIntegrationBundle\Tests\Resources\Admin\SeoAwareContentAdmin
59
+ tags :
60
+ - { name: sonata.admin, manager_type: doctrine_phpcr, label_catalogue: CmfSeoBundle, group: dashboard.cmf, label: dashboard.label_seo_content, label_translator_strategy: sonata.admin.label.strategy.underscore}
61
+ arguments :
62
+ - ~
63
+ - Symfony\Cmf\Bundle\SonataPhpcrAdminIntegrationBundle\Tests\Resources\Document\SeoAwareContent
64
+ - SonataAdminBundle:CRUD
65
+ calls :
66
+ - [ setTranslationDomain, [CmfSonataPhpcrAdminIntegrationBundle]]
67
+ - [ setRouteBuilder, ['@sonata.admin.route.path_info_slashes']]
68
+ - [ setRootPath, [/test/content]]
69
+ sonata.admin.core_examples :
70
+ class : Symfony\Cmf\Bundle\SonataPhpcrAdminIntegrationBundle\Tests\Resources\Admin\CoreExtensionsAdmin
71
+ tags :
72
+ - { name: sonata.admin, manager_type: doctrine_phpcr, label_catalogue: CmfSeoBundle, group: dashboard.cmf, label: dashboard.label_seo_content, label_translator_strategy: sonata.admin.label.strategy.underscore}
73
+ arguments :
74
+ - ~
75
+ - Symfony\Cmf\Bundle\SonataPhpcrAdminIntegrationBundle\Tests\Resources\Document\CoreExtensionsAwareContent
76
+ - SonataAdminBundle:CRUD
77
+ calls :
78
+ - [ setTranslationDomain, [CmfSonataPhpcrAdminIntegrationBundle]]
79
+ - [ setRouteBuilder, ['@sonata.admin.route.path_info_slashes']]
80
+ - [ setRootPath, [/test/core]]
81
+
82
+ sonata.admin.menu :
83
+ class : Symfony\Cmf\Bundle\SonataPhpcrAdminIntegrationBundle\Tests\Resources\Admin\MenuContentAdmin
84
+ tags :
85
+ - { name: sonata.admin, manager_type: doctrine_phpcr, group: Test, label: Test Content }
86
+ arguments :
87
+ - ~
88
+ - Symfony\Cmf\Bundle\SonataPhpcrAdminIntegrationBundle\Tests\Resources\Document\MenuContent
89
+ - SonataAdminBundle:CRUD
90
+
91
+ sonata_admin :
92
+ extensions :
93
+ cmf_sonata_phpcr_admin_integration.seo.extension.metadata :
94
+ implements :
95
+ - Symfony\Cmf\Bundle\SeoBundle\SeoAwareInterface
96
+ cmf_sonata_phpcr_admin_integration.menu.extension.menu_node_referrers :
97
+ implements :
98
+ - Symfony\Cmf\Bundle\MenuBundle\Model\MenuNodeReferrersInterface
99
+ cmf_sonata_phpcr_admin_integration.routing.extension.frontend_link :
100
+ implements :
101
+ - Symfony\Cmf\Component\Routing\RouteReferrersReadInterface
102
+ extends :
103
+ - Symfony\Component\Routing\Route
104
+ cmf_sonata_phpcr_admin_integration.core.extension.publish_workflow.publishable :
105
+ implements :
106
+ - Symfony\Cmf\Bundle\CoreBundle\PublishWorkflow\PublishableInterface
107
+ cmf_sonata_phpcr_admin_integration.core.extension.publish_workflow.time_period :
108
+ implements :
109
+ - Symfony\Cmf\Bundle\CoreBundle\PublishWorkflow\PublishTimePeriodInterface
110
+ dashboard :
111
+ groups :
112
+ content :
113
+ label : Content
114
+ items :
115
+ - sonata.admin.seo_content
116
+
117
+ cmf_content :
118
+ persistence :
119
+ phpcr :
120
+ content_basepath : /test/contents
121
+
122
+
0 commit comments