Skip to content
Snippets Groups Projects
Commit 8ed3b3cc authored by Eric Bremner's avatar Eric Bremner
Browse files

ISTWCMS-4704: putting nodes in order on nodes preprocessing function (mainly for Kevin ;))

parent 374688f6
No related branches found
No related tags found
1 merge request!113ISTWCMS-4704: moving all the types of node preprocessing to the service, now...
...@@ -374,21 +374,21 @@ class UWService implements UWServiceInterface { ...@@ -374,21 +374,21 @@ class UWService implements UWServiceInterface {
case 'full': case 'full':
$preprocess = [ $preprocess = [
'uw_ct_blog', 'uw_ct_blog',
'uw_ct_event',
'uw_ct_news_item',
'uw_ct_web_page',
'uw_ct_catalog_item', 'uw_ct_catalog_item',
'uw_ct_contact', 'uw_ct_contact',
'uw_ct_event',
'uw_ct_news_item',
'uw_ct_profile', 'uw_ct_profile',
'uw_ct_web_page',
]; ];
break; break;
case 'layout_container': case 'layout_container':
$preprocess = [ $preprocess = [
'uw_ct_blog', 'uw_ct_blog',
'uw_ct_news_item',
'uw_ct_event',
'uw_ct_contact', 'uw_ct_contact',
'uw_ct_event',
'uw_ct_news_item',
'uw_ct_profile', 'uw_ct_profile',
]; ];
break; break;
...@@ -396,12 +396,12 @@ class UWService implements UWServiceInterface { ...@@ -396,12 +396,12 @@ class UWService implements UWServiceInterface {
case 'teaser': case 'teaser':
$preprocess = [ $preprocess = [
'uw_ct_blog', 'uw_ct_blog',
'uw_ct_event',
'uw_ct_news_item',
'uw_ct_web_page',
'uw_ct_catalog_item', 'uw_ct_catalog_item',
'uw_ct_contact', 'uw_ct_contact',
'uw_ct_event',
'uw_ct_news_item',
'uw_ct_profile', 'uw_ct_profile',
'uw_ct_web_page',
]; ];
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment