ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.shibServerData.php
Go to the documentation of this file.
1 <?php
24 {
25  protected static ?shibServerData $server_cache = null;
26 
31  protected function __construct(array $data)
32  {
33  $shib_config = shibConfig::getInstance();
34  foreach (array_keys(get_class_vars(shibConfig::class)) as $field) {
35  $str = $shib_config->getValueByKey($field);
36  if ($str !== null) {
37  $this->{$field} = $data[$str] ?? '';
38  }
39  }
40  }
41 
42  #[\Override]
43  public static function getInstance(): shibServerData
44  {
45  if (!isset(self::$server_cache)) {
46  self::$server_cache = new self($_SERVER);
47  }
48 
49  return self::$server_cache;
50  }
51 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static shibServerData $server_cache
static getInstance()
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
$_SERVER['HTTP_HOST']
Definition: raiseError.php:26
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(array $data)
MagicMethodsValidityInspection PhpMissingParentConstructorInspection