-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_localconf.php
73 lines (68 loc) · 2.99 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
defined('TYPO3_MODE') || die('Access denied.');
call_user_func(
function()
{
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'Embettyvideo4typo3',
'Video',
[
\Te\Embettyvideo4typo3\Controller\VideoController::class => 'show'
],
// non-cacheable actions
[
\Te\Embettyvideo4typo3\Controller\VideoController::class => ''
]
);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'Embettyvideo4typo3',
'Videos',
[
\Te\Embettyvideo4typo3\Controller\VideoController::class => 'list, show'
],
// non-cacheable actions
[
\Te\Embettyvideo4typo3\Controller\VideoController::class => ''
]
);
// wizards
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig(
'mod {
wizards.newContentElement.wizardItems.plugins {
elements {
video {
iconIdentifier = embettyvideo4typo3-plugin-video
title = LLL:EXT:embettyvideo4typo3/Resources/Private/Language/locallang_db.xlf:tx_embettyvideo4typo3_video.name
description = LLL:EXT:embettyvideo4typo3/Resources/Private/Language/locallang_db.xlf:tx_embettyvideo4typo3_video.description
tt_content_defValues {
CType = list
list_type = embettyvideo4typo3_video
}
}
videos {
iconIdentifier = embettyvideo4typo3-plugin-videos
title = LLL:EXT:embettyvideo4typo3/Resources/Private/Language/locallang_db.xlf:tx_embettyvideo4typo3_videos.name
description = LLL:EXT:embettyvideo4typo3/Resources/Private/Language/locallang_db.xlf:tx_embettyvideo4typo3_videos.description
tt_content_defValues {
CType = list
list_type = embettyvideo4typo3_videos
}
}
}
show = *
}
}'
);
$iconRegistry = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\Imaging\IconRegistry::class);
$iconRegistry->registerIcon(
'embettyvideo4typo3-plugin-video',
\TYPO3\CMS\Core\Imaging\IconProvider\SvgIconProvider::class,
['source' => 'EXT:embettyvideo4typo3/Resources/Public/Icons/user_plugin_video.svg']
);
$iconRegistry->registerIcon(
'embettyvideo4typo3-plugin-videos',
\TYPO3\CMS\Core\Imaging\IconProvider\SvgIconProvider::class,
['source' => 'EXT:embettyvideo4typo3/Resources/Public/Icons/user_plugin_video.svg']
);
}
);