‪TYPO3CMS  ‪main
MfaProvidersProvider.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
19 
21 
23 {
24  public function ‪__construct(protected ‪MfaProviderRegistry $mfaProviderRegistry) {}
25 
26  public function ‪getConfiguration(): array
27  {
28  $providers = $this->mfaProviderRegistry->getProviders();
29  $configuration = [];
30  $languageService = $this->‪getLanguageService();
31  foreach ($providers as ‪$identifier => $provider) {
32  $title = $languageService->sL($provider->getTitle());
33  if ($title !== $provider->getTitle()) {
34  $title .= ' [' . $provider->getTitle() . ']';
35  }
36  $description = $languageService->sL($provider->getDescription());
37  if ($description !== $provider->getDescription()) {
38  $description .= ' [' . $provider->getDescription() . ']';
39  }
40  $configuration[‪$identifier] = [
41  'title' => $title,
42  'description' => $description,
43  'isDefaultAllowed' => $provider->isDefaultProviderAllowed(),
44  ];
45  }
46  return $configuration;
47  }
48 }
‪TYPO3\CMS\Lowlevel\ConfigurationModuleProvider\AbstractProvider\$identifier
‪string $identifier
Definition: AbstractProvider.php:28
‪TYPO3\CMS\Lowlevel\ConfigurationModuleProvider\AbstractProvider\getLanguageService
‪getLanguageService()
Definition: AbstractProvider.php:52
‪TYPO3\CMS\Lowlevel\ConfigurationModuleProvider\AbstractProvider
Definition: AbstractProvider.php:27
‪TYPO3\CMS\Lowlevel\ConfigurationModuleProvider\MfaProvidersProvider\getConfiguration
‪getConfiguration()
Definition: MfaProvidersProvider.php:26
‪TYPO3\CMS\Lowlevel\ConfigurationModuleProvider\MfaProvidersProvider
Definition: MfaProvidersProvider.php:23
‪TYPO3\CMS\Lowlevel\ConfigurationModuleProvider
Definition: AbstractProvider.php:18
‪TYPO3\CMS\Lowlevel\ConfigurationModuleProvider\MfaProvidersProvider\__construct
‪__construct(protected MfaProviderRegistry $mfaProviderRegistry)
Definition: MfaProvidersProvider.php:24
‪TYPO3\CMS\Core\Authentication\Mfa\MfaProviderRegistry
Definition: MfaProviderRegistry.php:28