mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:16:13 +01:00
16 lines
435 B
PHP
16 lines
435 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, show',
|
|
],
|
|
// non-cacheable actions
|
|
[
|
|
'Tea' => '',
|
|
]
|
|
);
|