Allow caching of plugins

This commit is contained in:
Björn Fromme
2018-10-08 07:15:24 +02:00
parent cd7dfc3b58
commit 58e071547b
2 changed files with 23 additions and 5 deletions
+22 -4
View File
@@ -9,6 +9,9 @@ call_user_func(function() {
'OfferTeasers', 'OfferTeasers',
[ [
'Offer' => 'teaser', 'Offer' => 'teaser',
],
[
'Offer' => '',
] ]
); );
@@ -17,6 +20,9 @@ call_user_func(function() {
'OfferDetail', 'OfferDetail',
[ [
'Offer' => 'detail', 'Offer' => 'detail',
],
[
'Offer' => '',
] ]
); );
@@ -25,6 +31,9 @@ call_user_func(function() {
'Testimonials', 'Testimonials',
[ [
'Testimonial' => 'list', 'Testimonial' => 'list',
],
[
'Testimonial' => '',
] ]
); );
@@ -33,6 +42,9 @@ call_user_func(function() {
'Contacts', 'Contacts',
[ [
'Contact' => 'list', 'Contact' => 'list',
],
[
'Contact' => '',
] ]
); );
@@ -41,6 +53,9 @@ call_user_func(function() {
'ActivityTeasers', 'ActivityTeasers',
[ [
'Activity' => 'list', 'Activity' => 'list',
],
[
'Activity' => '',
] ]
); );
@@ -49,6 +64,9 @@ call_user_func(function() {
'ActivityDetail', 'ActivityDetail',
[ [
'Activity' => 'detail', 'Activity' => 'detail',
],
[
'Activity' => '',
] ]
); );
@@ -59,7 +77,7 @@ call_user_func(function() {
'Form' => 'inquiryForm', 'Form' => 'inquiryForm',
], ],
[ [
'Form' => 'inquiryForm', 'Form' => '',
] ]
); );
@@ -70,7 +88,7 @@ call_user_func(function() {
'Form' => 'contactForm', 'Form' => 'contactForm',
], ],
[ [
'Form' => 'contactForm', 'Form' => '',
] ]
); );
@@ -81,7 +99,7 @@ call_user_func(function() {
'Search' => 'form', 'Search' => 'form',
], ],
[ [
'Search' => 'form', 'Search' => '',
] ]
); );
@@ -103,7 +121,7 @@ call_user_func(function() {
'Form' => 'configurator', 'Form' => 'configurator',
], ],
[ [
'Form' => 'configurator', 'Form' => '',
] ]
); );
@@ -73,7 +73,7 @@ $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['scheduler']['tasks'][\EP\EpProducts\T
'Product' => 'detail,hotelList', 'Product' => 'detail,hotelList',
], ],
[ [
'Product' => 'detail,hotelList', 'Product' => '',
] ]
); );