forked from t3solution/t3sbootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_tables.php
24 lines (21 loc) · 946 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
24
<?php
defined('TYPO3') || die();
(function () {
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule(
'T3sbootstrap',
'web',
'm1',
'',
[
\T3SBS\T3sbootstrap\Controller\ConfigController::class => 'list, new, create, edit, update, delete, dashboard, constants ',
],
[
'access' => 'user,group',
'icon' => 'EXT:t3sbootstrap/Resources/Public/Images/bootstrap-solid.svg',
'labels' => 'LLL:EXT:t3sbootstrap/Resources/Private/Language/locallang_m1.xlf',
]
);
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr('tx_t3sbootstrap_domain_model_config', 'EXT:t3sbootstrap/Resources/Private/Language/locallang_csh_tx_t3sbootstrap_domain_model_config.xlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::allowTableOnStandardPages('tx_t3sbootstrap_domain_model_config');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::allowTableOnStandardPages('tx_t3sbootstrap_list_item_inline');
})();