-
Notifications
You must be signed in to change notification settings - Fork 8
/
ext_localconf.php
105 lines (93 loc) · 4.26 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php
defined('TYPO3') or die();
use TYPO3\CMS\Core\Imaging\IconProvider\BitmapIconProvider;
use TYPO3\CMS\Core\Utility\ExtensionManagementUtility;
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Extbase\Utility\ExtensionUtility;
use TYPO3\CMS\Core\Information\Typo3Version;
$GLOBALS['TYPO3_CONF_VARS']['SYS']['features']['security.backend.enforceContentSecurityPolicy'] = false;
$GLOBALS['TYPO3_CONF_VARS']['FE']['cacheHash']['excludedParameters'] = ['idp_name', 'RelayState', 'option', 'SAMLRequest', 'SAMLResponse', 'SigAlg', 'Signature', 'type', 'app', 'code', 'state', 'logintype'];
call_user_func(
function () {
$pluginNameBesaml = "Besaml";
$pluginNameFesaml = 'Fesaml';
$pluginNameResponse = 'Response';
$version = new Typo3Version();
if (version_compare($version, '10.0.0', '>=')) {
$extensionName = 'sp';
$cache_actions_besaml = [Miniorange\Sp\Controller\BesamlController::class => 'request'];
$cache_actions_fesaml = [Miniorange\Sp\Controller\FesamlController::class => 'request'];
$non_cache_actions_fesaml = [Miniorange\Sp\Controller\FesamlController::class => 'control'];
$cache_actions_response = [Miniorange\Sp\Controller\ResponseController::class => 'response'];
} else {
$extensionName = 'Miniorange.sp';
$cache_actions_besaml = ['Besaml' => 'request'];
$cache_actions_fesaml = ['Fesaml' => 'request'];
$non_cache_actions_fesaml = ['Fesaml' => 'control'];
$cache_actions_response = ['Response' => 'response'];
}
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
$extensionName,
$pluginNameBesaml,
[
'Besaml' => 'request',
]
);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
$extensionName,
$pluginNameFesaml,
$cache_actions_fesaml,
// non-cacheable actions
$non_cache_actions_fesaml
);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
$extensionName,
$pluginNameResponse,
$cache_actions_response
);
// wizards
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig(
'mod {
wizards.newContentElement.wizardItems.plugins {
elements {
Fesamlkey {
iconIdentifier = sp-plugin-fesaml
title = LLL:EXT:sp/Resources/Private/Language/locallang_db.xlf:tx_sp_fesaml.name
description = LLL:EXT:sp/Resources/Private/Language/locallang_db.xlf:tx_sp_fesaml.description
tt_content_defValues {
CType = list
list_type = Fesaml
}
}
Responsekey {
iconIdentifier = sp-plugin-response
title = LLL:EXT:sp/Resources/Private/Language/locallang_db.xlf:tx_sp_response.name
description = LLL:EXT:sp/Resources/Private/Language/locallang_db.xlf:tx_sp_response.description
tt_content_defValues {
CType = list
list_type = Response
}
}
}
show = *
}
}'
);
$iconRegistry = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\Imaging\IconRegistry::class);
$iconRegistry->registerIcon(
'sp-plugin-fesaml',
\TYPO3\CMS\Core\Imaging\IconProvider\BitmapIconProvider::class,
['source' => 'EXT:sp/Resources/Public/Icons/Extension.png']
);
$iconRegistry->registerIcon(
'sp-plugin-response',
\TYPO3\CMS\Core\Imaging\IconProvider\BitmapIconProvider::class,
['source' => 'EXT:sp/Resources/Public/Icons/Extension.png']
);
$iconRegistry->registerIcon(
'sp-plugin-bekey',
\TYPO3\CMS\Core\Imaging\IconProvider\BitmapIconProvider::class,
['source' => 'EXT:sp/Resources/Public/Icons/Extension.png']
);
}
);