-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathext_localconf.php
39 lines (36 loc) · 1.3 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
<?php
defined('TYPO3_MODE') || die('Access denied.');
call_user_func(
function () {
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'In2code.In2contact',
'Pi1',
[
'Contact' => 'list, list2, show, new, create, edit, update, delete'
],
// non-cacheable actions
[
'Contact' => 'list, list2, create, update, delete'
]
);
// wizards
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig(
'mod {
wizards.newContentElement.wizardItems.plugins {
elements {
pi1 {
iconIdentifier = in2contact-plugin1
title = LLL:EXT:in2contact/Resources/Private/Language/locallang_db.xlf:plugin1.title
description = LLL:EXT:in2contact/Resources/Private/Language/locallang_db.xlf:plugin1.description
tt_content_defValues {
CType = list
list_type = in2contact_pi1
}
}
}
show = *
}
}'
);
}
);