forked from Tuurlijk/t3ext-h5p
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_localconf.php
50 lines (43 loc) · 1.84 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
<?php
defined('TYPO3_MODE') or die('¯\_(ツ)_/¯');
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'MichielRoos.h5p',
'view',
[
'View' => 'index',
],
[
'View' => 'index',
],
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::PLUGIN_TYPE_CONTENT_ELEMENT
);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'MichielRoos.h5p',
'statistics',
[
'View' => 'statistics',
],
[
'View' => 'statistics',
],
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::PLUGIN_TYPE_CONTENT_ELEMENT
);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'MichielRoos.h5p',
'ajax',
[
'Ajax' => 'index,finish,contentUserData',
],
[
'Ajax' => 'index,finish,contentUserData',
]
);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerTypeConverter(\MichielRoos\H5p\Property\TypeConverter\UploadedFileReferenceConverter::class);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerTypeConverter(\MichielRoos\H5p\Property\TypeConverter\ObjectStorageConverter::class);
// InsertH5p button for editor
//$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['rtehtmlarea']['plugins']['InsertH5p'] = [];
//$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['rtehtmlarea']['plugins']['InsertH5p']['objectReference'] = \MichielRoos\H5p\Rtehtmlarea\Extension\InsertH5p::class;
//$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['rtehtmlarea']['plugins']['InsertH5p']['disableInFE'] = 0;
// load Backend JavaScript modules - Seem not to be called in backend record edit mode
//$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/template.php']['preStartPageHook'][] = \MichielRoos\H5p\Backend\BackendJsLoader::class . '->loadJsModules';
//$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/backend.php']['constructPostProcess'][] = \MichielRoos\H5p\Backend\BackendJsLoader::class . '->loadJsModules';