ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAuthProviderCliFactory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 {
25  public function getProviders(ilAuthCredentials $credentials): array
26  {
27  return [
29  ];
30  }
31 
32  public function getProviderByAuthMode(ilAuthCredentials $credentials, $a_authmode): ?ilAuthProviderInterface
33  {
34  switch ((int) $a_authmode) {
37  $provider = parent::getProviderByAuthMode($credentials, $a_authmode);
38  return $provider->withoutPasswordVerification();
39 
40  default:
41  throw new CronException("The cron CLI script supports local authentication only.");
42  }
43  }
44 }
Interface of auth credentials.
$provider
Definition: ltitoken.php:80
Standard interface for auth provider implementations.
getProviders(ilAuthCredentials $credentials)
getProviderByAuthMode(ilAuthCredentials $credentials, $a_authmode)