-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_localconf.php
49 lines (42 loc) · 2.2 KB
/
ext_localconf.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
46
47
48
49
<?php
defined('TYPO3_MODE') || die;
/*******************************************************************************
* Plugin Configuration *
******************************************************************************/
/* Hybridauth login plugin */
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'Remind.' . $_EXTKEY,
'Login',
[ 'Login' => 'auth,afterAuth,authError,loginComplete'],
// non-cacheable actions
[ 'Login' => 'auth,afterAuth,authError,loginComplete']
);
/*******************************************************************************
* TYPO3 globals *
******************************************************************************/
/* exclude parameters from cHash calculation, necessary for facebook callback url */
$GLOBALS['TYPO3_CONF_VARS']['FE']['cacheHash']['excludedParameters'][] = 'tx_rmndhybridauth_login[provider]';
$GLOBALS['TYPO3_CONF_VARS']['FE']['cacheHash']['excludedParameters'][] = 'tx_rmndhybridauth_login[action]';
$GLOBALS['TYPO3_CONF_VARS']['FE']['cacheHash']['excludedParameters'][] = 'tx_rmndhybridauth_login[connection]';
/*******************************************************************************
* Service Registry *
******************************************************************************/
/* Only use service if option is activated in the extension settings */
if (\Remind\RmndHybridauth\Utility\ExtensionSettingsUtility::isUseAfterAuthLoginService()) {
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addService(
'rmnd_hybridauth',
'auth',
\Remind\RmndHybridauth\Service\AfterAuthLoginService::class,
[
'title' => 'RmndHybridAuth Social Login Service',
'description' => 'Process login after hybridauth connection',
'subtype' => 'getUserFE,authUserFE',
'available' => true,
'priority' => 74,
'quality' => 74,
'os' => '',
'exec' => '',
'className' => \Remind\RmndHybridauth\Service\AfterAuthLoginService::class
]
);
}