mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-09 17:36:12 +01:00
15 lines
302 B
PHP
15 lines
302 B
PHP
<?php
|
|
defined('TYPO3_MODE') or die('Access denied.');
|
|
|
|
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
|
|
'OliverKlee.' . $_EXTKEY,
|
|
'Tea',
|
|
// all actions
|
|
[
|
|
'Testimonial' => 'index,show',
|
|
],
|
|
// non-cacheable actions
|
|
[
|
|
'Testimonial' => '',
|
|
]
|
|
);
|