-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_localconf.php
37 lines (35 loc) · 1.26 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
<?php
defined('TYPO3') || die();
(static function() {
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'References',
'List',
[
\wapplersystems\References\Controller\ReferenceController::class => 'list'
],
[
\wapplersystems\References\Controller\ReferenceController::class => ''
],
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::PLUGIN_TYPE_CONTENT_ELEMENT
);
// wizards
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig(
'mod {
wizards.newContentElement.wizardItems.ext-references {
header = Referenzen
after = common
elements {
list {
iconIdentifier = references-plugin-list
title = LLL:EXT:references/Resources/Private/Language/locallang_db.xlf:tx_references_list.name
description = LLL:EXT:references/Resources/Private/Language/locallang_db.xlf:tx_references_list.description
tt_content_defValues {
CType = references_list
}
}
}
show = *
}
}'
);
})();