This repository has been archived on 2021-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
feiplogin/ext_localconf.php

20 lines
636 B
PHP

<?php
defined('TYPO3_MODE') || die();
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addService(
'feiplogin',
'auth',
\MMK2410\FeIpLogin\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' => \MMK2410\FeIpLogin\Domain\Service\AuthenticationService::class,
]
);