ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilContextSaml.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 {
23  public static function supportsRedirects(): bool
24  {
25  return true;
26  }
27 
28  public static function hasUser(): bool
29  {
30  return true;
31  }
32 
33  public static function usesHTTP(): bool
34  {
35  return true;
36  }
37 
38  public static function hasHTML(): bool
39  {
40  return true;
41  }
42 
43  public static function usesTemplate(): bool
44  {
45  return true;
46  }
47 
48  public static function initClient(): bool
49  {
50  return true;
51  }
52 
53  public static function doAuthentication(): bool
54  {
55  return true;
56  }
57 
58  public static function supportsPersistentSessions(): bool
59  {
60  return true;
61  }
62 
63  public static function supportsPushMessages(): bool
64  {
65  return false;
66  }
67 
68  public static function isSessionMainContext(): bool
69  {
70  return false;
71  }
72 
73  public static function modifyHttpPath(string $httpPath): string
74  {
75  if (strpos($httpPath, '/Services/Saml/lib/') !== false && strpos($httpPath, '/metadata.php') === false) {
76  return substr($httpPath, 0, strpos($httpPath, '/Services/Saml/lib/'));
77  }
78 
79  return $httpPath;
80  }
81 }
static supportsPushMessages()
Check if push messages are supported, see #0018206.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static modifyHttpPath(string $httpPath)
A context might modify the ILIAS http path.
static hasHTML()
Has HTML output.
static isSessionMainContext()
Context that are not only temporary in a session (e.g.
static usesTemplate()
Uses template engine.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static initClient()
Init client.
static supportsRedirects()
Are redirects supported?
static supportsPersistentSessions()
Check if persistent sessions are supported false for context cli.
static hasUser()
Based on user authentication?
static doAuthentication()
Try authentication.
static usesHTTP()
Uses HTTP aka browser.