mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-11-22 08:56:56 +01:00
tea/ext_localconf.php
2016-05-07 21:43:25 +02:00

15 lines
312 B
PHP

<?php
defined('TYPO3_MODE') or die('Access denied.');
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'OliverKlee.' . $_EXTKEY,
'Tea',
// all actions
array(
'Testimonial' => 'index',
),
// non-cacheable actions
array(
'Testimonial' => 'index',
)
);