TYPO3 CMS  TYPO3_7-6
ext_localconf.php
Go to the documentation of this file.
1 <?php
2 defined('TYPO3_MODE') or die();
3 
4 // Register base authentication service
5 \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addService(
6  'sv',
7  'auth',
8  \TYPO3\CMS\Sv\AuthenticationService::class,
9  [
10  'title' => 'User authentication',
11  'description' => 'Authentication with username/password.',
12  'subtype' => 'getUserBE,getUserFE,authUserFE,getGroupsFE,processLoginDataBE,processLoginDataFE',
13  'available' => true,
14  'priority' => 50,
15  'quality' => 50,
16  'os' => '',
17  'exec' => '',
18  'className' => \TYPO3\CMS\Sv\AuthenticationService::class
19  ]
20 );