Skip to content
Snippets Groups Projects
Commit 066f3075 authored by Paul Ilea's avatar Paul Ilea
Browse files

[TASK] Added extension SiteConfiguration template config

parent e5eaef1b
No related branches found
No related tags found
No related merge requests found
......@@ -58,3 +58,20 @@ if (!$GLOBALS['TYPO3_DISABLE_DEBUG']) {
// Vagrant specific stuff (if your user has another main group id than 1000, especially required on MacOSX)
$GLOBALS['TYPO3_CONF_VARS']['BE']['createGroup'] = '<%= @group_id %>';
// Paid extensions development license keys
$paidExtensionKeys = [
'sg_account',
'sg_comments',
'sg_mail',
'sg_news',
'sg_newsletter',
'sg_routes'
];
foreach($paidExtensionKeys as $extensionKey) {
if (isset($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf'][$extensionKey])) {
$extensionConfiguration = unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf'][$extensionKey], [FALSE]);
$extensionConfiguration['key'] = 'XXXXXX-XXXXXX-XXXXXX-XXXXXX';
$GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf'][$extensionKey] = serialize($extensionConfiguration);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment