-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_localconf.php
58 lines (53 loc) · 2.14 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
<?php
defined('TYPO3') || die();
(static function() {
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'Produzentenstolz',
'list',
[
\Produzentenstolz\Produzentenstolz\Controller\ProduzentenstolzController::class => 'list'
],
// non-cacheable actions
[
]
);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'Produzentenstolz',
'map',
[
\Produzentenstolz\Produzentenstolz\Controller\ProduzentenstolzController::class => 'map'
],
// non-cacheable actions
[
]
);
// wizards
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig(
'mod {
wizards.newContentElement.wizardItems.plugins {
elements {
list {
iconIdentifier = produzentenstolz-plugin-list
title = LLL:EXT:produzentenstolz/Resources/Private/Language/locallang_db.xlf:tx_produzentenstolz_list.name
description = LLL:EXT:produzentenstolz/Resources/Private/Language/locallang_db.xlf:tx_produzentenstolz_list.description
tt_content_defValues {
CType = list
list_type = produzentenstolz_list
}
}
map {
iconIdentifier = produzentenstolz-plugin-map
title = LLL:EXT:produzentenstolz/Resources/Private/Language/locallang_db.xlf:tx_produzentenstolz_map.name
description = LLL:EXT:produzentenstolz/Resources/Private/Language/locallang_db.xlf:tx_produzentenstolz_map.description
tt_content_defValues {
CType = list
list_type = produzentenstolz_map
}
}
}
show = *
}
}'
);
})();
$GLOBALS['TYPO3_CONF_VARS']['FE']['eID_include']['proxy'] = \Produzentenstolz\Produzentenstolz\Controller\ProxyController::class . '::proxyAction';