forked from WapplerSystems/cleverreach
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathext_localconf.php
More file actions
27 lines (24 loc) · 831 Bytes
/
ext_localconf.php
File metadata and controls
27 lines (24 loc) · 831 Bytes
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
declare(strict_types=1);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'Cleverreach',
'Optin',
[
\Supseven\Cleverreach\Controller\NewsletterController::class => 'optinForm, optinSubmit',
],
[
\Supseven\Cleverreach\Controller\NewsletterController::class => 'optinForm, optinSubmit',
],
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::PLUGIN_TYPE_CONTENT_ELEMENT
);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'Cleverreach',
'Optout',
[
\Supseven\Cleverreach\Controller\NewsletterController::class => 'optoutForm, optoutSubmit',
],
[
\Supseven\Cleverreach\Controller\NewsletterController::class => 'optoutForm, optoutSubmit',
],
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::PLUGIN_TYPE_CONTENT_ELEMENT
);