mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-09 23:56:14 +01:00
17 lines
429 B
PHP
17 lines
429 B
PHP
|
<?php
|
||
|
// 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)
|
||
|
'OliverKlee.Tea',
|
||
|
// arbitrary, but unique plugin name (not visible in the BE)
|
||
|
'Tea',
|
||
|
// all actions
|
||
|
[
|
||
|
'Tea' => 'index',
|
||
|
],
|
||
|
// non-cacheable actions
|
||
|
[
|
||
|
'Tea' => '',
|
||
|
]
|
||
|
);
|