ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
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}
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 supportsPushMessages()
Check if push messages are supported, see #0018206.
static isSessionMainContext()
Context that are not only temporary in a session (e.g.
static hasHTML()
Has HTML output.
static modifyHttpPath(string $httpPath)
A context might modify the ILIAS http path.
static supportsRedirects()
Are redirects supported?
static usesHTTP()
Uses HTTP aka browser.
static usesTemplate()
Uses template engine.
static hasUser()
Based on user authentication?
static initClient()
Init client.
static doAuthentication()
Try authentication.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...