ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilContextApacheSSO.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
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  return dirname($httpPath);
76  }
77 }
static modifyHttpPath(string $httpPath)
A context might modify the ILIAS http path.
static usesHTTP()
Uses HTTP aka browser.
static doAuthentication()
Try authentication.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static hasUser()
Based on user authentication?
static supportsPushMessages()
Check if push messages are supported, see #0018206.
static supportsPersistentSessions()
Check if persistent sessions are supported false for context cli.
static usesTemplate()
Uses template engine.
static isSessionMainContext()
Context that are not only temporary in a session (e.g.
static initClient()
Init client.
static supportsRedirects()
Are redirects supported?
static hasHTML()
Has HTML output.