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