-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathext_tables.php
33 lines (25 loc) · 1.06 KB
/
ext_tables.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
<?php
use TYPO3\CMS\Core\Utility\ExtensionManagementUtility;
call_user_func(
function ($extKey) {
ExtensionManagementUtility::addLLrefForTCAdescr(
'tt_content.pi_flexform.ws_slider',
'EXT:ws_slider/Resources/Private/Language/flexslider_csh_flexforms.xlf'
);
ExtensionManagementUtility::addLLrefForTCAdescr(
'tt_content.pi_flexform.ws_slider',
'EXT:ws_slider/Resources/Private/Language/owl_csh_flexforms.xlf'
);
ExtensionManagementUtility::addLLrefForTCAdescr(
'tt_content.pi_flexform.ws_slider',
'EXT:ws_slider/Resources/Private/Language/slick_csh_flexforms.xlf'
);
ExtensionManagementUtility::addLLrefForTCAdescr(
'tt_content.pi_flexform.ws_slider',
'EXT:ws_slider/Resources/Private/Language/tinyslider_csh_flexforms.xlf'
);
/* add backend css */
$GLOBALS['TBE_STYLES']['skins']['backend']['stylesheetDirectories'][$extKey] = 'EXT:'.$extKey.'/Resources/Public/CSS/Backend/';
},
'ws_slider'
);