mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 04:36:12 +01:00
17 lines
284 B
PHP
17 lines
284 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',
|
|
)
|
|
);
|