ILIAS  trunk Revision v11.0_alpha-2638-g80c1d007f79
class.ilAuthFrontendCredentialsShibboleth.php
Go to the documentation of this file.
1 <?php
2 
26 {
28 
29  public function __construct()
30  {
31  global $DIC;
33  $this->settings = $DIC->settings();
34  }
35 
36  protected function getSettings(): ilSetting
37  {
38  return $this->settings;
39  }
40 
41  public function initFromRequest(): void
42  {
43  $this->setUsername($this->settings->get('shib_login', ''));
44  $this->setPassword('');
45  }
46 }
global $DIC
Definition: shib_login.php:26
__construct(Container $dic, ilPlugin $plugin)