mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 09:16:13 +01:00
1f263d8839
This is one more part of building CRUD functionality.
39 lines
1.7 KiB
PHP
39 lines
1.7 KiB
PHP
<?php
|
|
|
|
defined('TYPO3') || die();
|
|
|
|
call_user_func(
|
|
static function (): void {
|
|
// This makes the plugin selectable in the BE.
|
|
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
|
|
// extension name, matching the PHP namespaces (but without the vendor)
|
|
'Tea',
|
|
// arbitrary, but unique plugin name (not visible in the BE)
|
|
'TeaIndex',
|
|
// plugin title, as visible in the drop-down in the BE
|
|
'LLL:EXT:tea/Resources/Private/Language/locallang.xlf:plugin.tea_index',
|
|
// the icon visible in the drop-down in the BE
|
|
'EXT:tea/Resources/Public/Icons/Extension.svg'
|
|
);
|
|
|
|
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
|
|
'Tea',
|
|
'TeaShow',
|
|
'LLL:EXT:tea/Resources/Private/Language/locallang.xlf:plugin.tea_show',
|
|
'EXT:tea/Resources/Public/Icons/Extension.svg'
|
|
);
|
|
|
|
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
|
|
'Tea',
|
|
'TeaFrontEndEditor',
|
|
'LLL:EXT:tea/Resources/Private/Language/locallang.xlf:plugin.tea_frontend_editor',
|
|
'EXT:tea/Resources/Public/Icons/Extension.svg'
|
|
);
|
|
|
|
// This removes the default controls from the plugin.
|
|
$controlsToRemove = 'recursive,select_key,pages';
|
|
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['tea_teaindex'] = $controlsToRemove;
|
|
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['tea_teashow'] = $controlsToRemove;
|
|
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['tea_teafrontendeditor'] = $controlsToRemove;
|
|
}
|
|
);
|