2013-11-05 12:41:20 +01:00
|
|
|
<?php
|
2014-12-14 15:26:17 +01:00
|
|
|
defined('TYPO3_MODE') or die('Access denied.');
|
2013-11-05 12:41:20 +01:00
|
|
|
|
|
|
|
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
|
2016-05-07 21:43:25 +02:00
|
|
|
'OliverKlee.' . $_EXTKEY,
|
|
|
|
'Tea',
|
|
|
|
// all actions
|
2016-05-07 21:56:27 +02:00
|
|
|
[
|
2016-05-07 21:43:25 +02:00
|
|
|
'Testimonial' => 'index',
|
2016-05-07 21:56:27 +02:00
|
|
|
],
|
2016-05-07 21:43:25 +02:00
|
|
|
// non-cacheable actions
|
2016-05-07 21:56:27 +02:00
|
|
|
[
|
2016-05-07 21:43:25 +02:00
|
|
|
'Testimonial' => 'index',
|
2016-05-07 21:56:27 +02:00
|
|
|
]
|
2013-11-05 12:41:20 +01:00
|
|
|
);
|