-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathext_localconf.php
49 lines (43 loc) · 1.73 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
<?php
use Fab\NaturalGallery\Controller\GalleryController;
defined('TYPO3_MODE') or die();
call_user_func(
function () {
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'Fab.natural_gallery',
'Pi1',
[
GalleryController::class => 'list',
],
// non-cachable actions
[]
);
// Register icons
$icons = [
'content-natural-gallery' => 'EXT:natural_gallery/Resources/Public/Images/NaturalGallery.png',
];
$iconRegistry = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\Imaging\IconRegistry::class);
foreach ($icons as $identifier => $path) {
$iconRegistry->registerIcon(
$identifier, TYPO3\CMS\Core\Imaging\IconProvider\BitmapIconProvider::class, ['source' => $path]
);
}
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig(
'mod {
wizards.newContentElement.wizardItems.plugins {
elements {
tx_naturalgallery_templatebasedcontent {
iconIdentifier = content-natural-gallery
title = LLL:EXT:natural_gallery/Resources/Private/Language/locallang.xlf:wizard.title
description = LLL:EXT:natural_gallery/Resources/Private/Language/locallang.xlf:wizard.description
tt_content_defValues {
CType = list
list_type = naturalgallery_pi1
}
}
}
}
}'
);
}
);