ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilContextSoapNoAuth.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
5 include_once "Services/Context/interfaces/interface.ilContextTemplate.php";
6 
11 {
12 
16  public static function supportsRedirects()
17  {
18  return false;
19  }
20 
24  public static function hasUser()
25  {
26  return false;
27  }
28 
32  public static function usesHTTP()
33  {
34  return true;
35  }
36 
40  public static function hasHTML()
41  {
42  return false;
43  }
44 
48  public static function usesTemplate()
49  {
50  return false;
51  }
52 
56  public static function initClient()
57  {
58  return true;
59  }
60 
64  public static function doAuthentication()
65  {
66  return false;
67  }
68 
72  public static function supportsPersistentSessions()
73  {
74  return false;
75  }
76 
80  public static function supportsPushMessages()
81  {
82  return false;
83  }
84 
88  public static function isSessionMainContext()
89  {
90  return true;
91  }
92 }
static hasUser()
Based on user authentication?bool
Service context for soap without handling authentication.
static supportsPersistentSessions()
Check if persistent sessions are supported false for context cli.
static supportsRedirects()
Are redirects supported?bool
static supportsPushMessages()
Check if push messages are supported, see #0018206.bool
static isSessionMainContext()
Context that are not only temporary in a session (e.g.WAC is, Cron is not)bool
Interface ilContextTemplate.
static initClient()
Init client.bool
static usesTemplate()
Uses template engine.bool
static hasHTML()
Has HTML output.bool
static usesHTTP()
Uses HTTP aka browser.bool
static doAuthentication()
Try authentication.bool