ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilAuthFrontendCredentialsHTTP.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
5 include_once './Services/Authentication/classes/Frontend/class.ilAuthFrontendCredentials.php';
6 include_once './Services/Authentication/interfaces/interface.ilAuthCredentials.php';
7 
15 {
16  private $settings = null;
17 
18 
22  public function __construct()
23  {
25  }
26 
30  public function initFromRequest()
31  {
32  $this->setUsername($_SERVER['PHP_AUTH_USER']);
33  $this->setPassword($_SERVER['PHP_AUTH_PW']);
34  }
35 }
Interface of auth credentials.
$_SERVER['HTTP_HOST']
Definition: raiseError.php:10
setPassword($a_password)
Set password.
initFromRequest()
Init credentials from request.
__construct(Container $dic, ilPlugin $plugin)