[TASK] Create extension in2frontendauthentication

Working commit
This commit is contained in:
Alex Kellner 2016-06-09 17:14:59 +02:00
parent 7ae48ccd1c
commit 735530d787
2 changed files with 72 additions and 0 deletions

19
ext_localconf.php Normal file
View file

@ -0,0 +1,19 @@
<?php
defined('TYPO3_MODE') || die();
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addService(
'in2frontendauthentication',
'auth',
\In2code\In2frontendauthentication\Domain\Service\AuthenticationService::class,
[
'title' => 'Frontenduser authentication service',
'description' => 'Authentication visitors as frontend users if IP address is matching.',
'subtype' => 'getUserFE,authUserFE,getGroupsFE',
'available' => true,
'priority' => 50,
'quality' => 50,
'os' => '',
'exec' => '',
'className' => \In2code\In2frontendauthentication\Domain\Service\AuthenticationService::class,
]
);