-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_tables.php
23 lines (20 loc) · 942 Bytes
/
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
<?php
defined('TYPO3_MODE') || die('Access denied.');
call_user_func(
function()
{
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr(
'tx_wdbnewssnapin_news_ttcontent_mm',
'EXT:wdb_news_snapin/Resources/Private/Language/locallang_csh_tx_wdbnewssnapin_news_ttcontent_mm.xlf'
);
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr(
'tx_news_domain_model_news',
'EXT:wdb_news_snapin/Resources/Private/Language/locallang_csh_tx_news_domain_model_news.xlf'
);
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr(
'tt_content',
'EXT:wdb_news_snapin/Resources/Private/Language/locallang_csh_tt_content.xlf'
);
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile('wdb_news_snapin', 'Configuration/TypoScript', 'News Snapin');
}
);