-
Notifications
You must be signed in to change notification settings - Fork 8
/
ext_tables.php
27 lines (22 loc) · 1.13 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
<?php
defined('TYPO3') or die('Access denied.');
call_user_func(
function () {
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr(
'tx_imageopt_domain_model_providerresult',
'EXT:imageopt/Resources/Private/Language/locallang_csh_tx_imageopt_domain_model_providerresult.xlf'
);
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr(
'tx_imageopt_domain_model_executorresult',
'EXT:imageopt/Resources/Private/Language/locallang_csh_tx_imageopt_domain_model_executorresult.xlf'
);
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr(
'tx_imageopt_domain_model_optimizationoptionresult',
'EXT:imageopt/Resources/Private/Language/locallang_csh_tx_imageopt_domain_model_optimizationresult.xlf'
);
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr(
'tx_imageopt_domain_model_optimizationstepresult',
'EXT:imageopt/Resources/Private/Language/locallang_csh_tx_imageopt_domain_model_optimizationresult.xlf'
);
}
);