From 8ed3b3cce9a5a2d2d411cf1864fd523e8fdcea41 Mon Sep 17 00:00:00 2001 From: ebremner <ebremner@uwaterloo.ca> Date: Fri, 18 Jun 2021 16:09:54 -0400 Subject: [PATCH] ISTWCMS-4704: putting nodes in order on nodes preprocessing function (mainly for Kevin ;)) --- src/Service/UWService.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Service/UWService.php b/src/Service/UWService.php index 7f86af03..f08feb7c 100644 --- a/src/Service/UWService.php +++ b/src/Service/UWService.php @@ -374,21 +374,21 @@ class UWService implements UWServiceInterface { case 'full': $preprocess = [ 'uw_ct_blog', - 'uw_ct_event', - 'uw_ct_news_item', - 'uw_ct_web_page', 'uw_ct_catalog_item', 'uw_ct_contact', + 'uw_ct_event', + 'uw_ct_news_item', 'uw_ct_profile', + 'uw_ct_web_page', ]; break; case 'layout_container': $preprocess = [ 'uw_ct_blog', - 'uw_ct_news_item', - 'uw_ct_event', 'uw_ct_contact', + 'uw_ct_event', + 'uw_ct_news_item', 'uw_ct_profile', ]; break; @@ -396,12 +396,12 @@ class UWService implements UWServiceInterface { case 'teaser': $preprocess = [ 'uw_ct_blog', - 'uw_ct_event', - 'uw_ct_news_item', - 'uw_ct_web_page', 'uw_ct_catalog_item', 'uw_ct_contact', + 'uw_ct_event', + 'uw_ct_news_item', 'uw_ct_profile', + 'uw_ct_web_page', ]; break; -- GitLab