mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:56:12 +01:00
18 lines
286 B
PHP
18 lines
286 B
PHP
|
<?php
|
||
|
if (!defined('TYPO3_MODE')) {
|
||
|
die('Access denied.');
|
||
|
}
|
||
|
|
||
|
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
|
||
|
'OliverKlee.' . $_EXTKEY,
|
||
|
'Tea',
|
||
|
// all actions
|
||
|
array(
|
||
|
'Testimonial' => 'index',
|
||
|
),
|
||
|
// non-cacheable actions
|
||
|
array(
|
||
|
'Testimonial' => 'index',
|
||
|
)
|
||
|
);
|
||
|
?>
|