mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 18:16:13 +02:00
tea/ext_localconf.php
2014-12-14 15:50:25 +01:00

15 lines
276 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',
)
);