mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:36:13 +01:00
f0127b3b64
Co-authored-by: Łukasz Uznański <l.uznanski@macopedia.com>
21 lines
566 B
PHP
21 lines
566 B
PHP
<?php
|
|
|
|
defined('TYPO3_MODE') or die('Access denied.');
|
|
|
|
(static function () {
|
|
// This makes the plugin available for front-end rendering.
|
|
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
|
|
// extension name, exactly matching the PHP namespaces (vendor and product)
|
|
'TTN.Tea',
|
|
// arbitrary, but unique plugin name (not visible in the BE)
|
|
'Tea',
|
|
// all actions
|
|
[
|
|
'Tea' => 'index, show',
|
|
],
|
|
// non-cacheable actions
|
|
[
|
|
'Tea' => '',
|
|
]
|
|
);
|
|
})();
|