-
Notifications
You must be signed in to change notification settings - Fork 5
/
ext_localconf.php
34 lines (31 loc) · 918 Bytes
/
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
<?php
if (!defined('TYPO3_MODE'))
die('Access denied.');
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'Heilmann.' . $_EXTKEY,
'Pi1',
array(
'Pi1' => 'show, multiThumbnail',
),
// non-cacheable actions
array(
)
);
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig(
'mod {
wizards.newContentElement.wizardItems.plugins {
elements {
jhPhotoswipe {
iconIdentifier = jh-photoswipe-contentelement
title = LLL:EXT:jh_photoswipe/Resources/Private/Language/newContentElement.xlf:plugins.jhPhotoswipe.title
description = LLL:EXT:jh_photoswipe/Resources/Private/Language/newContentElement.xlf:plugins.jhPhotoswipe.description
tt_content_defValues {
CType = list
list_type = jhphotoswipe_pi1
}
}
}
show = *
}
}'
);