mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:56:13 +02:00
tea/ext_localconf.php

16 lines
302 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(
2016-05-07 21:43:25 +02:00
'OliverKlee.' . $_EXTKEY,
'Tea',
// all actions
2016-05-07 21:56:27 +02:00
[
2016-05-07 21:43:25 +02:00
'Testimonial' => 'index',
2016-05-07 21:56:27 +02:00
],
2016-05-07 21:43:25 +02:00
// non-cacheable actions
2016-05-07 21:56:27 +02:00
[
2016-05-07 21:43:25 +02:00
'Testimonial' => 'index',
2016-05-07 21:56:27 +02:00
]
);