diff --git a/kunstmaan/admin-bundle/5.2/config/packages/kunstmaan_admin.yaml b/kunstmaan/admin-bundle/5.2/config/packages/kunstmaan_admin.yaml new file mode 100644 index 00000000..ccb9fc25 --- /dev/null +++ b/kunstmaan/admin-bundle/5.2/config/packages/kunstmaan_admin.yaml @@ -0,0 +1,6 @@ +kunstmaan_admin: + multi_language: true + required_locales: nl|fr|en + default_locale: en + admin_locales: ['en'] + website_title: 'MyProject' #Rename this to your website name diff --git a/kunstmaan/admin-bundle/5.2/config/routes/kunstmaan_admin.yaml b/kunstmaan/admin-bundle/5.2/config/routes/kunstmaan_admin.yaml new file mode 100644 index 00000000..5831b65b --- /dev/null +++ b/kunstmaan/admin-bundle/5.2/config/routes/kunstmaan_admin.yaml @@ -0,0 +1,6 @@ +KunstmaanAdminBundle: + resource: "@KunstmaanAdminBundle/Resources/config/routing.yml" + # If your site is not multi language, remove the "{_locale}/" part of prefix and requirements + prefix: /{_locale}/ + requirements: + _locale: "%kunstmaan_admin.required_locales%" diff --git a/kunstmaan/admin-bundle/5.2/manifest.json b/kunstmaan/admin-bundle/5.2/manifest.json new file mode 100644 index 00000000..eac64f53 --- /dev/null +++ b/kunstmaan/admin-bundle/5.2/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Kunstmaan\\AdminBundle\\KunstmaanAdminBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/kunstmaan/adminlist-bundle/5.2/config/routes/kunstmaan_adminlist.yaml b/kunstmaan/adminlist-bundle/5.2/config/routes/kunstmaan_adminlist.yaml new file mode 100644 index 00000000..246ae4b7 --- /dev/null +++ b/kunstmaan/adminlist-bundle/5.2/config/routes/kunstmaan_adminlist.yaml @@ -0,0 +1,6 @@ +KunstmaanAdminListBundle: + resource: "@KunstmaanAdminListBundle/Resources/config/routing.yml" + # If your site is not multi language, remove the "{_locale}/" part of the prefix and the requirements + prefix: /{_locale}/ + requirements: + _locale: "%kunstmaan_admin.required_locales%" diff --git a/kunstmaan/adminlist-bundle/5.2/manifest.json b/kunstmaan/adminlist-bundle/5.2/manifest.json new file mode 100644 index 00000000..a14010db --- /dev/null +++ b/kunstmaan/adminlist-bundle/5.2/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Kunstmaan\\AdminListBundle\\KunstmaanAdminListBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/kunstmaan/config-bundle/5.2/config/packages/kunstmaan_config.yaml b/kunstmaan/config-bundle/5.2/config/packages/kunstmaan_config.yaml new file mode 100644 index 00000000..7b9ce5de --- /dev/null +++ b/kunstmaan/config-bundle/5.2/config/packages/kunstmaan_config.yaml @@ -0,0 +1,4 @@ +#kunstmaan_config: + # Add your custom config entities here +# entities: +# - \App\Entity\CustomConfigEntity diff --git a/kunstmaan/config-bundle/5.2/config/routes/kunstmaan_config.yaml b/kunstmaan/config-bundle/5.2/config/routes/kunstmaan_config.yaml new file mode 100644 index 00000000..02c3d54d --- /dev/null +++ b/kunstmaan/config-bundle/5.2/config/routes/kunstmaan_config.yaml @@ -0,0 +1,6 @@ +KunstmaanConfigBundle: + resource: "@KunstmaanConfigBundle/Resources/config/routing.yml" + # If your site is not multi language, remove the "{_locale}/" part of prefix and requirements + prefix: /{_locale}/ + requirements: + _locale: "%kunstmaan_admin.required_locales%" diff --git a/kunstmaan/config-bundle/5.2/manifest.json b/kunstmaan/config-bundle/5.2/manifest.json new file mode 100644 index 00000000..84cd9856 --- /dev/null +++ b/kunstmaan/config-bundle/5.2/manifest.json @@ -0,0 +1,10 @@ +{ + "bundles": { + "Kunstmaan\\ConfigBundle\\KunstmaanConfigBundle": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/kunstmaan/dashboard-bundle/5.2/config/packages/kunstmaan_dashboard.yaml b/kunstmaan/dashboard-bundle/5.2/config/packages/kunstmaan_dashboard.yaml new file mode 100644 index 00000000..cb143b34 --- /dev/null +++ b/kunstmaan/dashboard-bundle/5.2/config/packages/kunstmaan_dashboard.yaml @@ -0,0 +1,9 @@ +# Configurate the dashboard bundle google api parameters to enable the google widget +# More info at https://kunstmaanbundlescms.readthedocs.io/en/latest/cookbook/google-analytics-dashboard/ +kunstmaan_dashboard: + google_analytics: + api: + client_id: '%env(GOOGLE_API_CLIENT_ID)%' + client_secret: '%env(GOOGLE_API_CLIENT_SECRET)%' + dev_key: '%env(GOOGLE_API_DEV_KEY)%' + app_name: '%env(GOOGLE_API_APP_NAME)%' diff --git a/kunstmaan/dashboard-bundle/5.2/config/routes/kunstmaan_dashboard.yaml b/kunstmaan/dashboard-bundle/5.2/config/routes/kunstmaan_dashboard.yaml new file mode 100644 index 00000000..744a1ccf --- /dev/null +++ b/kunstmaan/dashboard-bundle/5.2/config/routes/kunstmaan_dashboard.yaml @@ -0,0 +1,6 @@ +KunstmaanDashboardBundle: + resource: "@KunstmaanDashboardBundle/Resources/config/routing.yml" + # If your site is not multi language, remove the "{_locale}/" part of the prefix and the requirements + prefix: /{_locale}/ + requirements: + _locale: "%kunstmaan_admin.required_locales%" diff --git a/kunstmaan/dashboard-bundle/5.2/manifest.json b/kunstmaan/dashboard-bundle/5.2/manifest.json new file mode 100644 index 00000000..380b622c --- /dev/null +++ b/kunstmaan/dashboard-bundle/5.2/manifest.json @@ -0,0 +1,14 @@ +{ + "bundles": { + "Kunstmaan\\DashboardBundle\\KunstmaanDashboardBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "GOOGLE_API_CLIENT_ID": "client_id", + "GOOGLE_API_CLIENT_SECRET": "secret", + "GOOGLE_API_DEV_KEY": "dev_key", + "GOOGLE_API_APP_NAME": "MyDevApp" + } +} diff --git a/kunstmaan/form-bundle/5.2/config/routes/kunstmaan_form.yaml b/kunstmaan/form-bundle/5.2/config/routes/kunstmaan_form.yaml new file mode 100644 index 00000000..d8ae2353 --- /dev/null +++ b/kunstmaan/form-bundle/5.2/config/routes/kunstmaan_form.yaml @@ -0,0 +1,6 @@ +KunstmaanFormBundle: + resource: "@KunstmaanFormBundle/Resources/config/routing.yml" + # If your site is not multi language, remove the "{_locale}/" part of the prefix and the requirements + prefix: /{_locale}/ + requirements: + _locale: "%kunstmaan_admin.required_locales%" diff --git a/kunstmaan/form-bundle/5.2/manifest.json b/kunstmaan/form-bundle/5.2/manifest.json new file mode 100644 index 00000000..6414f071 --- /dev/null +++ b/kunstmaan/form-bundle/5.2/manifest.json @@ -0,0 +1,10 @@ +{ + "bundles": { + "Kunstmaan\\FormBundle\\KunstmaanFormBundle": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/kunstmaan/media-bundle/5.2/config/routes/kunstmaan_media.yaml b/kunstmaan/media-bundle/5.2/config/routes/kunstmaan_media.yaml new file mode 100644 index 00000000..2bd26be0 --- /dev/null +++ b/kunstmaan/media-bundle/5.2/config/routes/kunstmaan_media.yaml @@ -0,0 +1,6 @@ +KunstmaanMediaBundle: + resource: "@KunstmaanMediaBundle/Resources/config/routing.yml" + # If your site is not multi language, remove the "{_locale}/" part of the prefix and the requirements + prefix: /{_locale}/ + requirements: + _locale: "%kunstmaan_admin.required_locales%" diff --git a/kunstmaan/media-bundle/5.2/manifest.json b/kunstmaan/media-bundle/5.2/manifest.json new file mode 100644 index 00000000..af4ba0b9 --- /dev/null +++ b/kunstmaan/media-bundle/5.2/manifest.json @@ -0,0 +1,10 @@ +{ + "bundles": { + "Kunstmaan\\MediaBundle\\KunstmaanMediaBundle": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/kunstmaan/menu-bundle/5.2/config/packages/kunstmaan_menu.yaml b/kunstmaan/menu-bundle/5.2/config/packages/kunstmaan_menu.yaml new file mode 100644 index 00000000..b3673e49 --- /dev/null +++ b/kunstmaan/menu-bundle/5.2/config/packages/kunstmaan_menu.yaml @@ -0,0 +1,6 @@ +#kunstmaan_menu: +# menus: +# - main_navigation +# - footer_navigation +# +# This is example configuration code. You can add as many menu's as you like diff --git a/kunstmaan/menu-bundle/5.2/config/routes/kunstmaan_menu.yaml b/kunstmaan/menu-bundle/5.2/config/routes/kunstmaan_menu.yaml new file mode 100644 index 00000000..2b1973f1 --- /dev/null +++ b/kunstmaan/menu-bundle/5.2/config/routes/kunstmaan_menu.yaml @@ -0,0 +1,6 @@ +KunstmaanMenuBundle: + resource: "@KunstmaanMenuBundle/Resources/config/routing.yml" + # If your site is not multi language, remove the "{_locale}/" part of prefix and requirements + prefix: /{_locale}/ + requirements: + _locale: "%kunstmaan_admin.required_locales%" diff --git a/kunstmaan/menu-bundle/5.2/manifest.json b/kunstmaan/menu-bundle/5.2/manifest.json new file mode 100644 index 00000000..255b25aa --- /dev/null +++ b/kunstmaan/menu-bundle/5.2/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Kunstmaan\\MenuBundle\\KunstmaanMenuBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/kunstmaan/node-bundle/5.2/config/routes/kunstmaan_node.yaml b/kunstmaan/node-bundle/5.2/config/routes/kunstmaan_node.yaml new file mode 100644 index 00000000..a2c24de3 --- /dev/null +++ b/kunstmaan/node-bundle/5.2/config/routes/kunstmaan_node.yaml @@ -0,0 +1,6 @@ +KunstmaanNodeBundle: + resource: "@KunstmaanNodeBundle/Resources/config/routing.yml" + # If your site is not multi language, remove the "{_locale}/" part of the prefix and the requirements + prefix: /{_locale}/ + requirements: + _locale: "%kunstmaan_admin.required_locales%" diff --git a/kunstmaan/node-bundle/5.2/manifest.json b/kunstmaan/node-bundle/5.2/manifest.json new file mode 100644 index 00000000..a3f1c8b8 --- /dev/null +++ b/kunstmaan/node-bundle/5.2/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Kunstmaan\\NodeBundle\\KunstmaanNodeBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/kunstmaan/pagepart-bundle/5.2/config/packages/kunstmaan_pagepart.yaml b/kunstmaan/pagepart-bundle/5.2/config/packages/kunstmaan_pagepart.yaml new file mode 100644 index 00000000..dc9b4560 --- /dev/null +++ b/kunstmaan/pagepart-bundle/5.2/config/packages/kunstmaan_pagepart.yaml @@ -0,0 +1,5 @@ +imports: + - { resource: '../kunstmaancms/**/*.yml', ignore_errors: true} + +kunstmaan_page_part: + extended_pagepart_chooser: true diff --git a/kunstmaan/pagepart-bundle/5.2/config/routes/kunstmaan_pagepart.yaml b/kunstmaan/pagepart-bundle/5.2/config/routes/kunstmaan_pagepart.yaml new file mode 100644 index 00000000..dbc2b575 --- /dev/null +++ b/kunstmaan/pagepart-bundle/5.2/config/routes/kunstmaan_pagepart.yaml @@ -0,0 +1,6 @@ +KunstmaanPagePartBundle: + resource: "@KunstmaanPagePartBundle/Resources/config/routing.yml" + # If your site is not multi language, remove the "{_locale}/" part of prefix and requirements + prefix: /{_locale}/ + requirements: + _locale: "%kunstmaan_admin.required_locales%" diff --git a/kunstmaan/pagepart-bundle/5.2/manifest.json b/kunstmaan/pagepart-bundle/5.2/manifest.json new file mode 100644 index 00000000..fd7de066 --- /dev/null +++ b/kunstmaan/pagepart-bundle/5.2/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Kunstmaan\\PagePartBundle\\KunstmaanPagePartBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/kunstmaan/redirect-bundle/5.2/config/routes/kunstmaan_redirect.yaml b/kunstmaan/redirect-bundle/5.2/config/routes/kunstmaan_redirect.yaml new file mode 100644 index 00000000..33aa2e3f --- /dev/null +++ b/kunstmaan/redirect-bundle/5.2/config/routes/kunstmaan_redirect.yaml @@ -0,0 +1,6 @@ +KunstmaanRedirectBundle: + resource: "@KunstmaanRedirectBundle/Resources/config/routing.yml" + # If your site is not multi language, remove the "{_locale}/" part of prefix and requirements + prefix: /{_locale}/ + requirements: + _locale: "%kunstmaan_admin.required_locales%" diff --git a/kunstmaan/redirect-bundle/5.2/manifest.json b/kunstmaan/redirect-bundle/5.2/manifest.json new file mode 100644 index 00000000..007bd1b5 --- /dev/null +++ b/kunstmaan/redirect-bundle/5.2/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Kunstmaan\\RedirectBundle\\KunstmaanRedirectBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/kunstmaan/search-bundle/5.2/config/packages/kunstmaan_search.yaml b/kunstmaan/search-bundle/5.2/config/packages/kunstmaan_search.yaml new file mode 100644 index 00000000..6e83e67d --- /dev/null +++ b/kunstmaan/search-bundle/5.2/config/packages/kunstmaan_search.yaml @@ -0,0 +1,6 @@ +kunstmaan_search: + connection: + driver: elastic_search + host: localhost + port: 9200 + index_prefix: myproject # Change this prefix to you liking. Maybe the name of your project diff --git a/kunstmaan/search-bundle/5.2/manifest.json b/kunstmaan/search-bundle/5.2/manifest.json new file mode 100644 index 00000000..be438937 --- /dev/null +++ b/kunstmaan/search-bundle/5.2/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Kunstmaan\\SearchBundle\\KunstmaanSearchBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/kunstmaan/seo-bundle/5.2/config/routes/kunstmaan_seo.yaml b/kunstmaan/seo-bundle/5.2/config/routes/kunstmaan_seo.yaml new file mode 100644 index 00000000..de7b0d7f --- /dev/null +++ b/kunstmaan/seo-bundle/5.2/config/routes/kunstmaan_seo.yaml @@ -0,0 +1,11 @@ +KunstmaanSeoBundle: + resource: "@KunstmaanSeoBundle/Resources/config/routing.yml" + # If your site is not multi language, remove the "{_locale}/" part of prefix and requirements + prefix: /{_locale}/ + requirements: + _locale: "%kunstmaan_admin.required_locales%" + +# Robots.txt +KunstmaanSeoBundle_robots: + resource: "@KunstmaanSeoBundle/Controller/RobotsController.php" + type: annotation diff --git a/kunstmaan/seo-bundle/5.2/manifest.json b/kunstmaan/seo-bundle/5.2/manifest.json new file mode 100644 index 00000000..78f15039 --- /dev/null +++ b/kunstmaan/seo-bundle/5.2/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Kunstmaan\\SeoBundle\\KunstmaanSeoBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/kunstmaan/sitemap-bundle/5.2/config/routes/kunstmaan_sitemap.yaml b/kunstmaan/sitemap-bundle/5.2/config/routes/kunstmaan_sitemap.yaml new file mode 100644 index 00000000..c4c5c7ed --- /dev/null +++ b/kunstmaan/sitemap-bundle/5.2/config/routes/kunstmaan_sitemap.yaml @@ -0,0 +1,6 @@ +KunstmaanSitemapBundle: + resource: "@KunstmaanSitemapBundle/Resources/config/routing.yml" + # If your site is not multi language, remove the "{_locale}/" part of prefix and requirements + prefix: / + requirements: + _locale: "%kunstmaan_admin.required_locales%" diff --git a/kunstmaan/sitemap-bundle/5.2/manifest.json b/kunstmaan/sitemap-bundle/5.2/manifest.json new file mode 100644 index 00000000..1d0f7967 --- /dev/null +++ b/kunstmaan/sitemap-bundle/5.2/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Kunstmaan\\SitemapBundle\\KunstmaanSitemapBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/kunstmaan/translator-bundle/5.2/config/packages/kunstmaan_translator.yaml b/kunstmaan/translator-bundle/5.2/config/packages/kunstmaan_translator.yaml new file mode 100644 index 00000000..69c800dc --- /dev/null +++ b/kunstmaan/translator-bundle/5.2/config/packages/kunstmaan_translator.yaml @@ -0,0 +1,4 @@ +kunstmaan_translator: + enabled: true + # Add your preferred locales here + managed_locales: ['nl', 'en', 'de', 'fr'] diff --git a/kunstmaan/translator-bundle/5.2/config/routes/kunstmaan_translator.yaml b/kunstmaan/translator-bundle/5.2/config/routes/kunstmaan_translator.yaml new file mode 100644 index 00000000..cfc7d77f --- /dev/null +++ b/kunstmaan/translator-bundle/5.2/config/routes/kunstmaan_translator.yaml @@ -0,0 +1,6 @@ +KunstmaanTranslatorBundle: + resource: "@KunstmaanTranslatorBundle/Resources/config/routing.yml" + # If your site is not multi language, remove the "{_locale}/" part of prefix and requirements + prefix: /{_locale}/ + requirements: + _locale: "%kunstmaan_admin.required_locales%" diff --git a/kunstmaan/translator-bundle/5.2/manifest.json b/kunstmaan/translator-bundle/5.2/manifest.json new file mode 100644 index 00000000..a4f2f5ac --- /dev/null +++ b/kunstmaan/translator-bundle/5.2/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Kunstmaan\\TranslatorBundle\\KunstmaanTranslatorBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/kunstmaan/user-management-bundle/5.2/config/routes/kunstmaan_user_management.yaml b/kunstmaan/user-management-bundle/5.2/config/routes/kunstmaan_user_management.yaml new file mode 100644 index 00000000..b5c10bf4 --- /dev/null +++ b/kunstmaan/user-management-bundle/5.2/config/routes/kunstmaan_user_management.yaml @@ -0,0 +1,6 @@ +KunstmaanUserManagementBundle: + resource: "@KunstmaanUserManagementBundle/Resources/config/routing.yml" + # If your site is not multi language, remove the "{_locale}/" part of prefix and requirements + prefix: /{_locale}/ + requirements: + _locale: "%kunstmaan_admin.required_locales%" diff --git a/kunstmaan/user-management-bundle/5.2/manifest.json b/kunstmaan/user-management-bundle/5.2/manifest.json new file mode 100644 index 00000000..0be91eed --- /dev/null +++ b/kunstmaan/user-management-bundle/5.2/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Kunstmaan\\UserManagementBundle\\KunstmaanUserManagementBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +}