ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ilContextApacheSSO Class Reference

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V. More...

+ Inheritance diagram for ilContextApacheSSO:
+ Collaboration diagram for ilContextApacheSSO:

Static Public Member Functions

static supportsRedirects ()
 Are redirects supported? More...
 
static hasUser ()
 Based on user authentication? More...
 
static usesHTTP ()
 Uses HTTP aka browser. More...
 
static hasHTML ()
 Has HTML output. More...
 
static usesTemplate ()
 Uses template engine. More...
 
static initClient ()
 Init client. More...
 
static doAuthentication ()
 Try authentication. More...
 
static supportsPersistentSessions ()
 Check if persistent sessions are supported false for context cli. More...
 
static supportsPushMessages ()
 Check if push messages are supported, see #0018206. More...
 
static isSessionMainContext ()
 Context that are not only temporary in a session (e.g. More...
 
static modifyHttpPath (string $httpPath)
 A context might modify the ILIAS http path. More...
 

Detailed Description

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.

ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.

If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning

Definition at line 20 of file class.ilContextApacheSSO.php.

Member Function Documentation

◆ doAuthentication()

static ilContextApacheSSO::doAuthentication ( )
static

Try authentication.

Implements ilContextTemplate.

Definition at line 52 of file class.ilContextApacheSSO.php.

52  : bool
53  {
54  return true;
55  }

◆ hasHTML()

static ilContextApacheSSO::hasHTML ( )
static

Has HTML output.

Implements ilContextTemplate.

Definition at line 37 of file class.ilContextApacheSSO.php.

37  : bool
38  {
39  return true;
40  }

◆ hasUser()

static ilContextApacheSSO::hasUser ( )
static

Based on user authentication?

Implements ilContextTemplate.

Definition at line 27 of file class.ilContextApacheSSO.php.

27  : bool
28  {
29  return true;
30  }

◆ initClient()

static ilContextApacheSSO::initClient ( )
static

Init client.

Implements ilContextTemplate.

Definition at line 47 of file class.ilContextApacheSSO.php.

47  : bool
48  {
49  return true;
50  }

◆ isSessionMainContext()

static ilContextApacheSSO::isSessionMainContext ( )
static

Context that are not only temporary in a session (e.g.

WAC is, Cron is not)

Implements ilContextTemplate.

Definition at line 67 of file class.ilContextApacheSSO.php.

67  : bool
68  {
69  return false;
70  }

◆ modifyHttpPath()

static ilContextApacheSSO::modifyHttpPath ( string  $httpPath)
static

A context might modify the ILIAS http path.

See also
::buildHTTPPath

Implements ilContextTemplate.

Definition at line 72 of file class.ilContextApacheSSO.php.

72  : string
73  {
74  return dirname($httpPath);
75  }

◆ supportsPersistentSessions()

static ilContextApacheSSO::supportsPersistentSessions ( )
static

Check if persistent sessions are supported false for context cli.

Implements ilContextTemplate.

Definition at line 57 of file class.ilContextApacheSSO.php.

57  : bool
58  {
59  return true;
60  }

◆ supportsPushMessages()

static ilContextApacheSSO::supportsPushMessages ( )
static

Check if push messages are supported, see #0018206.

Implements ilContextTemplate.

Definition at line 62 of file class.ilContextApacheSSO.php.

62  : bool
63  {
64  return false;
65  }

◆ supportsRedirects()

static ilContextApacheSSO::supportsRedirects ( )
static

Are redirects supported?

Implements ilContextTemplate.

Definition at line 22 of file class.ilContextApacheSSO.php.

22  : bool
23  {
24  return true;
25  }

◆ usesHTTP()

static ilContextApacheSSO::usesHTTP ( )
static

Uses HTTP aka browser.

Implements ilContextTemplate.

Definition at line 32 of file class.ilContextApacheSSO.php.

32  : bool
33  {
34  return true;
35  }

◆ usesTemplate()

static ilContextApacheSSO::usesTemplate ( )
static

Uses template engine.

Implements ilContextTemplate.

Definition at line 42 of file class.ilContextApacheSSO.php.

42  : bool
43  {
44  return true;
45  }

The documentation for this class was generated from the following file: