-
Notifications
You must be signed in to change notification settings - Fork 19
/
ext_tables.php
45 lines (38 loc) · 1.52 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
34
35
36
37
38
39
40
41
42
43
44
45
<?php
defined('TYPO3_MODE') || die;
call_user_func(
function ($extensionKey) {
// Assign the hooks for pushing newly created and edited forms to Mautic
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/form']['beforeFormDuplicate'][1489959059] =
\Bitmotion\Mautic\Hooks\MauticFormHook::class;
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/form']['beforeFormDelete'][1489959059] =
\Bitmotion\Mautic\Hooks\MauticFormHook::class;
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/form']['beforeFormSave'][1489959059] =
\Bitmotion\Mautic\Hooks\MauticFormHook::class;
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile(
$extensionKey,
'Configuration/TypoScript',
'Mautic'
);
// Backend Module
if (version_compare(TYPO3_version, '10.0.0', '<')) {
$extensionName = 'Bitmotion.Mautic';
$controllerName = 'Backend';
}
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule(
$extensionName ?? $extensionKey,
'tools',
'api',
'bottom',
[
$controllerName ?? \Bitmotion\Mautic\Controller\BackendController::class => 'show, save',
],
[
'access' => 'admin',
'iconIdentifier' => 'tx_mautic-mautic-icon',
'labels' => 'LLL:EXT:mautic/Resources/Private/Language/locallang_mod.xlf',
]
);
},
'mautic'
);