mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 02:36:12 +02:00
tea/ext_localconf.php

16 lines
276 B
PHP
Raw Normal View History

<?php
2014-12-14 15:26:17 +01:00
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',
)
);