ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilContextRss.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
15
class
ilContextRss
implements
ilContextTemplate
16
{
22
public
static
function
supportsRedirects
()
23
{
24
return
false
;
25
}
26
32
public
static
function
hasUser
()
33
{
34
return
true
;
35
}
36
42
public
static
function
usesHTTP
()
43
{
44
return
true
;
45
}
46
52
public
static
function
hasHTML
()
53
{
54
return
true
;
55
}
56
62
public
static
function
usesTemplate
()
63
{
64
return
true
;
65
}
66
72
public
static
function
initClient
()
73
{
74
return
true
;
75
}
76
82
public
static
function
doAuthentication
()
83
{
84
return
false
;
85
}
86
91
public
static
function
supportsPersistentSessions
()
92
{
93
return
false
;
94
}
95
96
102
public
static
function
supportsPushMessages
()
103
{
104
return
false
;
105
}
106
110
public
static
function
isSessionMainContext
()
111
{
112
return
true
;
113
}
114
118
public
static
function
modifyHttpPath
(
string
$httpPath) : string
119
{
120
return
$httpPath;
121
}
122
}
ilContextRss\isSessionMainContext
static isSessionMainContext()
Context that are not only temporary in a session (e.g.WAC is, Cron is not)bool
Definition:
class.ilContextRss.php:110
ilContextRss\supportsPushMessages
static supportsPushMessages()
Supports push messages.
Definition:
class.ilContextRss.php:102
ilContextRss\supportsRedirects
static supportsRedirects()
Are redirects supported?
Definition:
class.ilContextRss.php:22
ilContextRss
Service context for feed/rss.
Definition:
class.ilContextRss.php:15
ilContextRss\initClient
static initClient()
Init client.
Definition:
class.ilContextRss.php:72
ilContextTemplate
Interface ilContextTemplate.
Definition:
interface.ilContextTemplate.php:9
ilContextRss\usesTemplate
static usesTemplate()
Uses template engine.
Definition:
class.ilContextRss.php:62
ilContextRss\hasHTML
static hasHTML()
Has HTML output.
Definition:
class.ilContextRss.php:52
ilContextRss\modifyHttpPath
static modifyHttpPath(string $httpPath)
Definition:
class.ilContextRss.php:118
ilContextRss\supportsPersistentSessions
static supportsPersistentSessions()
Check if persistent session handling is supported.
Definition:
class.ilContextRss.php:91
ilContextRss\hasUser
static hasUser()
Based on user authentication?
Definition:
class.ilContextRss.php:32
ilContextRss\doAuthentication
static doAuthentication()
Try authentication.
Definition:
class.ilContextRss.php:82
ilContextRss\usesHTTP
static usesHTTP()
Uses HTTP aka browser.
Definition:
class.ilContextRss.php:42
Services
Context
classes
class.ilContextRss.php
Generated on Thu Apr 3 2025 21:01:10 for ILIAS by
1.8.13 (using
Doxyfile
)