ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilContextSessionReminder.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 false;
26  }
27 
28  public static function hasUser(): bool
29  {
30  return false;
31  }
32 
33  public static function usesHTTP(): bool
34  {
35  return true;
36  }
37 
38  public static function hasHTML(): bool
39  {
40  return false;
41  }
42 
43  public static function usesTemplate(): bool
44  {
45  return false;
46  }
47 
48  public static function initClient(): bool
49  {
50  return true;
51  }
52 
53  public static function doAuthentication(): bool
54  {
55  return false;
56  }
57 
58  public static function supportsPersistentSessions(): bool
59  {
60  return false;
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 $httpPath;
76  }
77 }
static supportsPushMessages()
Check if push messages are supported, see #0018206.
static usesHTTP()
Uses HTTP aka browser.
static hasUser()
Based on user authentication?
static doAuthentication()
Try authentication.
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 usesTemplate()
Uses template engine.
static supportsPersistentSessions()
Check if persistent sessions are supported false for context cli.
static isSessionMainContext()
Context that are not only temporary in a session (e.g.
static supportsRedirects()
Are redirects supported?