-
Notifications
You must be signed in to change notification settings - Fork 8
/
ext_localconf.php
112 lines (106 loc) · 5.4 KB
/
ext_localconf.php
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?php
defined('TYPO3') or die('Access denied.');
call_user_func(
function () {
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'wacon_cookie_management',
'Cookiefreigabe',
[
\Waconcookiemanagement\WaconCookieManagement\Controller\CookieController::class => 'list',
],
// non-cacheable actions
[
\Waconcookiemanagement\WaconCookieManagement\Controller\CookieController::class => 'list'
]
);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'wacon_cookie_management',
'Script',
[
\Waconcookiemanagement\WaconCookieManagement\Controller\CookieController::class => 'show',
],
// non-cacheable actions
[
\Waconcookiemanagement\WaconCookieManagement\Controller\CookieController::class => 'show',
]
);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'wacon_cookie_management',
'Headerscript',
[
\Waconcookiemanagement\WaconCookieManagement\Controller\CookieController::class => 'headerscript',
],
// non-cacheable actions
[
\Waconcookiemanagement\WaconCookieManagement\Controller\CookieController::class => 'headerscript',
]
);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'wacon_cookie_management',
'Cookielist',
[
\Waconcookiemanagement\WaconCookieManagement\Controller\CookieController::class => 'cookielist',
],
// non-cacheable actions
[
]
);
// wizards
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig(
'mod {
wizards.newContentElement.wizardItems.plugins {
elements {
cookiefreigabe {
iconIdentifier = wacon_cookie_management-plugin-cookiefreigabe
title = LLL:EXT:wacon_cookie_management/Resources/Private/Language/locallang_db.xlf:tx_wacon_cookie_management_cookiefreigabe.name
description = LLL:EXT:wacon_cookie_management/Resources/Private/Language/locallang_db.xlf:tx_wacon_cookie_management_cookiefreigabe.description
tt_content_defValues {
CType = list
list_type = waconcookiemanagement_cookiefreigabe
}
}
cookielist {
iconIdentifier = wacon_cookie_management-plugin-script
title = LLL:EXT:wacon_cookie_management/Resources/Private/Language/locallang_db.xlf:tx_wacon_cookie_management_cookielist.name
description = LLL:EXT:wacon_cookie_management/Resources/Private/Language/locallang_db.xlf:tx_wacon_cookie_management_cookielist.description
tt_content_defValues {
CType = list
list_type = waconcookiemanagement_cookielist
}
}
script {
iconIdentifier = wacon_cookie_management-plugin-script
title = LLL:EXT:wacon_cookie_management/Resources/Private/Language/locallang_db.xlf:tx_wacon_cookie_management_script.name
description = LLL:EXT:wacon_cookie_management/Resources/Private/Language/locallang_db.xlf:tx_wacon_cookie_management_script.description
tt_content_defValues {
CType = list
list_type = waconcookiemanagement_script
}
}
headerscript {
iconIdentifier = wacon_cookie_management-plugin-script
title = LLL:EXT:wacon_cookie_management/Resources/Private/Language/locallang_db.xlf:tx_wacon_cookie_management_headerscript.name
description = LLL:EXT:wacon_cookie_management/Resources/Private/Language/locallang_db.xlf:tx_wacon_cookie_management_headerscript.description
tt_content_defValues {
CType = list
list_type = waconcookiemanagement_headerscript
}
}
}
show = *
}
}'
);
$iconRegistry = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\Imaging\IconRegistry::class);
$iconRegistry->registerIcon(
'wacon_cookie_management-plugin-cookiefreigabe',
\TYPO3\CMS\Core\Imaging\IconProvider\SvgIconProvider::class,
['source' => 'EXT:wacon_cookie_management/Resources/Public/Icons/user_plugin_cookiefreigabe.svg']
);
$iconRegistry->registerIcon(
'wacon_cookie_management-plugin-script',
\TYPO3\CMS\Core\Imaging\IconProvider\SvgIconProvider::class,
['source' => 'EXT:wacon_cookie_management/Resources/Public/Icons/user_plugin_script.svg']
);
}
);