-
-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathtt_content.php
More file actions
57 lines (46 loc) · 1.61 KB
/
tt_content.php
File metadata and controls
57 lines (46 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
defined('TYPO3') or die();
use TYPO3\CMS\Core\Utility\ExtensionManagementUtility;
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Extbase\Utility\ExtensionUtility;
call_user_func(function () {
$_LLL_db = 'LLL:EXT:cart/Resources/Private/Language/locallang_db.xlf:';
$pluginNames = [
'MiniCart' => [
'iconIdentifier' => 'ext-cart-wizard-icon',
],
'Cart' => [
'iconIdentifier' => 'ext-cart-wizard-icon',
],
'Currency' => [
'iconIdentifier' => 'ext-cart-wizard-icon',
],
'Order' => [
'iconIdentifier' => 'ext-cart-wizard-icon',
],
];
foreach ($pluginNames as $pluginName => $pluginConfig) {
$pluginSignature = 'cart_' . strtolower($pluginName);
$contentTypeName = ExtensionUtility::registerPlugin(
'Cart',
$pluginName,
$_LLL_db . 'tx_cart.plugin.' . $pluginSignature,
$pluginConfig['iconIdentifier'],
'cart'
);
$flexFormPath = 'EXT:cart/Configuration/FlexForms/' . $pluginName . 'Plugin.xml';
if (file_exists(GeneralUtility::getFileAbsFileName($flexFormPath))) {
ExtensionManagementUtility::addPiFlexFormValue(
'*',
'FILE:' . $flexFormPath,
$contentTypeName
);
ExtensionManagementUtility::addToAllTCAtypes(
'tt_content',
'--div--;Configuration,pi_flexform,',
$contentTypeName,
'after:subheader',
);
}
}
});