From 58e071547b4d0add736f7464333fe964842e9eb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20Fromme?= Date: Mon, 8 Oct 2018 07:15:24 +0200 Subject: [PATCH] Allow caching of plugins --- web/typo3conf/ext/ep_events/ext_localconf.php | 26 ++++++++++++++++--- .../ext/ep_products/ext_localconf.php | 2 +- 2 files changed, 23 insertions(+), 5 deletions(-) diff --git a/web/typo3conf/ext/ep_events/ext_localconf.php b/web/typo3conf/ext/ep_events/ext_localconf.php index 55bc8531..03d712f8 100644 --- a/web/typo3conf/ext/ep_events/ext_localconf.php +++ b/web/typo3conf/ext/ep_events/ext_localconf.php @@ -9,6 +9,9 @@ call_user_func(function() { 'OfferTeasers', [ 'Offer' => 'teaser', + ], + [ + 'Offer' => '', ] ); @@ -17,6 +20,9 @@ call_user_func(function() { 'OfferDetail', [ 'Offer' => 'detail', + ], + [ + 'Offer' => '', ] ); @@ -25,6 +31,9 @@ call_user_func(function() { 'Testimonials', [ 'Testimonial' => 'list', + ], + [ + 'Testimonial' => '', ] ); @@ -33,6 +42,9 @@ call_user_func(function() { 'Contacts', [ 'Contact' => 'list', + ], + [ + 'Contact' => '', ] ); @@ -41,6 +53,9 @@ call_user_func(function() { 'ActivityTeasers', [ 'Activity' => 'list', + ], + [ + 'Activity' => '', ] ); @@ -49,6 +64,9 @@ call_user_func(function() { 'ActivityDetail', [ 'Activity' => 'detail', + ], + [ + 'Activity' => '', ] ); @@ -59,7 +77,7 @@ call_user_func(function() { 'Form' => 'inquiryForm', ], [ - 'Form' => 'inquiryForm', + 'Form' => '', ] ); @@ -70,7 +88,7 @@ call_user_func(function() { 'Form' => 'contactForm', ], [ - 'Form' => 'contactForm', + 'Form' => '', ] ); @@ -81,7 +99,7 @@ call_user_func(function() { 'Search' => 'form', ], [ - 'Search' => 'form', + 'Search' => '', ] ); @@ -103,7 +121,7 @@ call_user_func(function() { 'Form' => 'configurator', ], [ - 'Form' => 'configurator', + 'Form' => '', ] ); diff --git a/web/typo3conf/ext/ep_products/ext_localconf.php b/web/typo3conf/ext/ep_products/ext_localconf.php index 91668177..55ae777c 100644 --- a/web/typo3conf/ext/ep_products/ext_localconf.php +++ b/web/typo3conf/ext/ep_products/ext_localconf.php @@ -73,7 +73,7 @@ $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['scheduler']['tasks'][\EP\EpProducts\T 'Product' => 'detail,hotelList', ], [ - 'Product' => 'detail,hotelList', + 'Product' => '', ] );