From 07059ed3362959ef91cd2a6208f5b1ac6cb08cec Mon Sep 17 00:00:00 2001 From: Matthijs Hasenpflug Date: Fri, 8 Feb 2019 13:44:27 +0100 Subject: [PATCH 1/8] Add cookie consent bundle --- .../0.1/config/packages/ch_cookie_consent.yaml | 5 +++++ .../cookie-consent-bundle/0.1/manifest.json | 11 +++++++++++ 2 files changed, 16 insertions(+) create mode 100644 connectholland/cookie-consent-bundle/0.1/config/packages/ch_cookie_consent.yaml create mode 100644 connectholland/cookie-consent-bundle/0.1/manifest.json diff --git a/connectholland/cookie-consent-bundle/0.1/config/packages/ch_cookie_consent.yaml b/connectholland/cookie-consent-bundle/0.1/config/packages/ch_cookie_consent.yaml new file mode 100644 index 00000000..bca799a2 --- /dev/null +++ b/connectholland/cookie-consent-bundle/0.1/config/packages/ch_cookie_consent.yaml @@ -0,0 +1,5 @@ +ch_cookie_consent: + theme: 'light' + categories: ['analytics', 'tracking', 'marketing', 'social_media'] + excluded_routes: ~ + excluded_paths: ~ diff --git a/connectholland/cookie-consent-bundle/0.1/manifest.json b/connectholland/cookie-consent-bundle/0.1/manifest.json new file mode 100644 index 00000000..c92d40f0 --- /dev/null +++ b/connectholland/cookie-consent-bundle/0.1/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "ConnectHolland\\CookieConsentBundle\\CHCookieConsentBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "composer-scripts": { + "assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd" + } +} From b54c0fc6a3f242b5837f45f02216b46fbad053fb Mon Sep 17 00:00:00 2001 From: Matthijs Hasenpflug Date: Fri, 8 Feb 2019 13:53:47 +0100 Subject: [PATCH 2/8] Comment default values --- .../0.1/config/packages/ch_cookie_consent.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/connectholland/cookie-consent-bundle/0.1/config/packages/ch_cookie_consent.yaml b/connectholland/cookie-consent-bundle/0.1/config/packages/ch_cookie_consent.yaml index bca799a2..92702a39 100644 --- a/connectholland/cookie-consent-bundle/0.1/config/packages/ch_cookie_consent.yaml +++ b/connectholland/cookie-consent-bundle/0.1/config/packages/ch_cookie_consent.yaml @@ -1,5 +1,5 @@ ch_cookie_consent: - theme: 'light' - categories: ['analytics', 'tracking', 'marketing', 'social_media'] - excluded_routes: ~ - excluded_paths: ~ + #theme: 'light' + #categories: ['analytics', 'tracking', 'marketing', 'social_media'] + #excluded_routes: ~ + #excluded_paths: ~ From 49d3a6807d8918e792f3200e0ee8c3e63c5da88d Mon Sep 17 00:00:00 2001 From: Matthijs Hasenpflug Date: Fri, 8 Feb 2019 14:12:32 +0100 Subject: [PATCH 3/8] Remove commented config --- .../0.1/config/packages/ch_cookie_consent.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/connectholland/cookie-consent-bundle/0.1/config/packages/ch_cookie_consent.yaml b/connectholland/cookie-consent-bundle/0.1/config/packages/ch_cookie_consent.yaml index 92702a39..324702f4 100644 --- a/connectholland/cookie-consent-bundle/0.1/config/packages/ch_cookie_consent.yaml +++ b/connectholland/cookie-consent-bundle/0.1/config/packages/ch_cookie_consent.yaml @@ -1,5 +1 @@ -ch_cookie_consent: - #theme: 'light' - #categories: ['analytics', 'tracking', 'marketing', 'social_media'] - #excluded_routes: ~ - #excluded_paths: ~ +ch_cookie_consent: ~ From 71973fad2cd47f9e66611f8801572aa0492834ea Mon Sep 17 00:00:00 2001 From: Matthijs Hasenpflug Date: Fri, 8 Feb 2019 14:17:01 +0100 Subject: [PATCH 4/8] Only set default categories config --- .../0.1/config/packages/ch_cookie_consent.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/connectholland/cookie-consent-bundle/0.1/config/packages/ch_cookie_consent.yaml b/connectholland/cookie-consent-bundle/0.1/config/packages/ch_cookie_consent.yaml index 324702f4..f878f0de 100644 --- a/connectholland/cookie-consent-bundle/0.1/config/packages/ch_cookie_consent.yaml +++ b/connectholland/cookie-consent-bundle/0.1/config/packages/ch_cookie_consent.yaml @@ -1 +1,2 @@ -ch_cookie_consent: ~ +ch_cookie_consent: + categories: ['analytics', 'tracking', 'social_media', 'marketing'] From fcbe24e757d335d263de0d135445de9619d653f8 Mon Sep 17 00:00:00 2001 From: Matthijs Hasenpflug Date: Mon, 11 Feb 2019 13:42:22 +0100 Subject: [PATCH 5/8] Add routes --- .../0.1/config/routes/ch_cookie_consent.yaml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 connectholland/cookie-consent-bundle/0.1/config/routes/ch_cookie_consent.yaml diff --git a/connectholland/cookie-consent-bundle/0.1/config/routes/ch_cookie_consent.yaml b/connectholland/cookie-consent-bundle/0.1/config/routes/ch_cookie_consent.yaml new file mode 100644 index 00000000..07c33c50 --- /dev/null +++ b/connectholland/cookie-consent-bundle/0.1/config/routes/ch_cookie_consent.yaml @@ -0,0 +1,2 @@ +ch_cookie_consent: + resource: "@CHCookieConsentBundle/Resources/config/routing.yaml" From ebff53bd711f54f697d4aab58d5233d3a7ba00a5 Mon Sep 17 00:00:00 2001 From: Matthijs Hasenpflug Date: Mon, 11 Feb 2019 15:36:41 +0100 Subject: [PATCH 6/8] Change version --- .../{0.1 => 0.3}/config/packages/ch_cookie_consent.yaml | 0 .../{0.1 => 0.3}/config/routes/ch_cookie_consent.yaml | 0 connectholland/cookie-consent-bundle/{0.1 => 0.3}/manifest.json | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename connectholland/cookie-consent-bundle/{0.1 => 0.3}/config/packages/ch_cookie_consent.yaml (100%) rename connectholland/cookie-consent-bundle/{0.1 => 0.3}/config/routes/ch_cookie_consent.yaml (100%) rename connectholland/cookie-consent-bundle/{0.1 => 0.3}/manifest.json (100%) diff --git a/connectholland/cookie-consent-bundle/0.1/config/packages/ch_cookie_consent.yaml b/connectholland/cookie-consent-bundle/0.3/config/packages/ch_cookie_consent.yaml similarity index 100% rename from connectholland/cookie-consent-bundle/0.1/config/packages/ch_cookie_consent.yaml rename to connectholland/cookie-consent-bundle/0.3/config/packages/ch_cookie_consent.yaml diff --git a/connectholland/cookie-consent-bundle/0.1/config/routes/ch_cookie_consent.yaml b/connectholland/cookie-consent-bundle/0.3/config/routes/ch_cookie_consent.yaml similarity index 100% rename from connectholland/cookie-consent-bundle/0.1/config/routes/ch_cookie_consent.yaml rename to connectholland/cookie-consent-bundle/0.3/config/routes/ch_cookie_consent.yaml diff --git a/connectholland/cookie-consent-bundle/0.1/manifest.json b/connectholland/cookie-consent-bundle/0.3/manifest.json similarity index 100% rename from connectholland/cookie-consent-bundle/0.1/manifest.json rename to connectholland/cookie-consent-bundle/0.3/manifest.json From 500391e49de551b627f7d656b853643e0d234443 Mon Sep 17 00:00:00 2001 From: Matthijs Hasenpflug Date: Mon, 11 Feb 2019 15:41:31 +0100 Subject: [PATCH 7/8] Change version --- .../{0.3 => 0.4}/config/packages/ch_cookie_consent.yaml | 0 .../{0.3 => 0.4}/config/routes/ch_cookie_consent.yaml | 0 connectholland/cookie-consent-bundle/{0.3 => 0.4}/manifest.json | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename connectholland/cookie-consent-bundle/{0.3 => 0.4}/config/packages/ch_cookie_consent.yaml (100%) rename connectholland/cookie-consent-bundle/{0.3 => 0.4}/config/routes/ch_cookie_consent.yaml (100%) rename connectholland/cookie-consent-bundle/{0.3 => 0.4}/manifest.json (100%) diff --git a/connectholland/cookie-consent-bundle/0.3/config/packages/ch_cookie_consent.yaml b/connectholland/cookie-consent-bundle/0.4/config/packages/ch_cookie_consent.yaml similarity index 100% rename from connectholland/cookie-consent-bundle/0.3/config/packages/ch_cookie_consent.yaml rename to connectholland/cookie-consent-bundle/0.4/config/packages/ch_cookie_consent.yaml diff --git a/connectholland/cookie-consent-bundle/0.3/config/routes/ch_cookie_consent.yaml b/connectholland/cookie-consent-bundle/0.4/config/routes/ch_cookie_consent.yaml similarity index 100% rename from connectholland/cookie-consent-bundle/0.3/config/routes/ch_cookie_consent.yaml rename to connectholland/cookie-consent-bundle/0.4/config/routes/ch_cookie_consent.yaml diff --git a/connectholland/cookie-consent-bundle/0.3/manifest.json b/connectholland/cookie-consent-bundle/0.4/manifest.json similarity index 100% rename from connectholland/cookie-consent-bundle/0.3/manifest.json rename to connectholland/cookie-consent-bundle/0.4/manifest.json From c65a3033448da5aa34f0fdfb36d4cb47fb33454a Mon Sep 17 00:00:00 2001 From: Matthijs Hasenpflug Date: Thu, 14 Feb 2019 13:55:45 +0100 Subject: [PATCH 8/8] Remove install assets script --- connectholland/cookie-consent-bundle/0.4/manifest.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/connectholland/cookie-consent-bundle/0.4/manifest.json b/connectholland/cookie-consent-bundle/0.4/manifest.json index c92d40f0..5e6bb8b3 100644 --- a/connectholland/cookie-consent-bundle/0.4/manifest.json +++ b/connectholland/cookie-consent-bundle/0.4/manifest.json @@ -4,8 +4,5 @@ }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" - }, - "composer-scripts": { - "assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd" } }