From 3058b3b0ccdaad972f7289dda2b03247f5d87020 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Kalij=C3=A4rvi?= Date: Tue, 16 Jan 2024 08:54:38 +0200 Subject: [PATCH] UHF-8975: Updated the order for kasko related paragraph types. --- .../helfi_kasko_content.module | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/public/modules/custom/helfi_kasko_content/helfi_kasko_content.module b/public/modules/custom/helfi_kasko_content/helfi_kasko_content.module index 0b91ddd6..b2b468da 100644 --- a/public/modules/custom/helfi_kasko_content/helfi_kasko_content.module +++ b/public/modules/custom/helfi_kasko_content/helfi_kasko_content.module @@ -172,29 +172,29 @@ function helfi_kasko_content_helfi_paragraph_types() : array { 'node' => [ 'page' => [ 'field_content' => [ - 'group_news', - 'high_school_search', - 'vocational_school_search', + 'vocational_school_search' => 18, + 'high_school_search' => 20, + 'group_news' => 21, ], 'field_lower_content' => [ - 'after_school_activity_search', - 'daycare_search', - 'group_news', - 'high_school_search', - 'playground_search', - 'vocational_school_search', + 'vocational_school_search' => 18, + 'after_school_activity_search' => 19, + 'playground_search' => 21, + 'high_school_search' => 22, + 'daycare_search' => 23, + 'group_news' => 24, ], ], 'landing_page' => [ 'field_content' => [ - 'after_school_activity_search', - 'daycare_search', - 'group_news', - 'group_news_archive', - 'high_school_search', - 'playground_search', - 'school_search', - 'vocational_school_search', + 'vocational_school_search' => 18, + 'after_school_activity_search' => 19, + 'playground_search' => 20, + 'high_school_search' => 21, + 'school_search' => 22, + 'daycare_search' => 23, + 'group_news' => 24, + 'group_news_archive' => 25, ], ], ],