ILIAS  trunk Revision v11.0_alpha-1831-g8615d53dadb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilContextSoapNoAuth 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 ilContextSoapNoAuth:
+ Collaboration diagram for ilContextSoapNoAuth:

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 Service context for soap without handling authentication

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

Member Function Documentation

◆ doAuthentication()

static ilContextSoapNoAuth::doAuthentication ( )
static

Try authentication.

Implements ilContextTemplate.

Definition at line 54 of file class.ilContextSoapNoAuth.php.

54  : bool
55  {
56  return false;
57  }

◆ hasHTML()

static ilContextSoapNoAuth::hasHTML ( )
static

Has HTML output.

Implements ilContextTemplate.

Definition at line 39 of file class.ilContextSoapNoAuth.php.

39  : bool
40  {
41  return false;
42  }

◆ hasUser()

static ilContextSoapNoAuth::hasUser ( )
static

Based on user authentication?

Implements ilContextTemplate.

Definition at line 29 of file class.ilContextSoapNoAuth.php.

29  : bool
30  {
31  return false;
32  }

◆ initClient()

static ilContextSoapNoAuth::initClient ( )
static

Init client.

Implements ilContextTemplate.

Definition at line 49 of file class.ilContextSoapNoAuth.php.

49  : bool
50  {
51  return true;
52  }

◆ isSessionMainContext()

static ilContextSoapNoAuth::isSessionMainContext ( )
static

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

WAC is, Cron is not)

Implements ilContextTemplate.

Definition at line 69 of file class.ilContextSoapNoAuth.php.

69  : bool
70  {
71  return true;
72  }

◆ modifyHttpPath()

static ilContextSoapNoAuth::modifyHttpPath ( string  $httpPath)
static

A context might modify the ILIAS http path.

See also
::buildHTTPPath

Implements ilContextTemplate.

Definition at line 74 of file class.ilContextSoapNoAuth.php.

74  : string
75  {
76  return $httpPath;
77  }

◆ supportsPersistentSessions()

static ilContextSoapNoAuth::supportsPersistentSessions ( )
static

Check if persistent sessions are supported false for context cli.

Implements ilContextTemplate.

Definition at line 59 of file class.ilContextSoapNoAuth.php.

59  : bool
60  {
61  return false;
62  }

◆ supportsPushMessages()

static ilContextSoapNoAuth::supportsPushMessages ( )
static

Check if push messages are supported, see #0018206.

Implements ilContextTemplate.

Definition at line 64 of file class.ilContextSoapNoAuth.php.

64  : bool
65  {
66  return false;
67  }

◆ supportsRedirects()

static ilContextSoapNoAuth::supportsRedirects ( )
static

Are redirects supported?

Implements ilContextTemplate.

Definition at line 24 of file class.ilContextSoapNoAuth.php.

24  : bool
25  {
26  return false;
27  }

◆ usesHTTP()

static ilContextSoapNoAuth::usesHTTP ( )
static

Uses HTTP aka browser.

Implements ilContextTemplate.

Definition at line 34 of file class.ilContextSoapNoAuth.php.

34  : bool
35  {
36  return true;
37  }

◆ usesTemplate()

static ilContextSoapNoAuth::usesTemplate ( )
static

Uses template engine.

Implements ilContextTemplate.

Definition at line 44 of file class.ilContextSoapNoAuth.php.

44  : bool
45  {
46  return false;
47  }

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