ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
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
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
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
k
l
m
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.ilRSSButtonGUI.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2014 ILIAS open source, Extended GPL, see docs/LICENSE */
4
12
class
ilRSSButtonGUI
13
{
14
const
ICON_RSS
=
"rss"
;
15
const
ICON_RSS_AUDIO
=
"rss audio"
;
16
const
ICON_RSS_VIDEO
=
"rss video"
;
17
const
ICON_ICAL
=
"ical"
;
18
const
ICON_ITUNES
=
"itunes"
;
19
const
ICON_ITUNES_AUDIO
=
"itunes audio"
;
20
const
ICON_ITUNES_VIDEO
=
"itunes video"
;
21
29
static
function
get
($a_type, $a_href =
""
)
30
{
31
$tpl
=
new
ilTemplate
(
"tpl.rss_icon.html"
,
true
,
true
,
"Services/News"
);
32
33
if
($a_href !=
""
)
34
{
35
$tpl
->setCurrentBlock(
"a_start"
);
36
$tpl
->setVariable(
"HREF"
, $a_href);
37
$tpl
->parseCurrentBlock();
38
$tpl
->touchBlock(
"a_end"
);
39
}
40
41
$text =
""
;
42
43
switch
($a_type)
44
{
45
case
self::ICON_RSS:
46
$text =
"RSS"
;
47
break
;
48
49
case
self::ICON_RSS_AUDIO:
50
$text =
"RSS Audio"
;
51
break
;
52
53
case
self::ICON_RSS_VIDEO:
54
$text =
"RSS Video"
;
55
break
;
56
57
case
self::ICON_ICAL:
58
$text =
"iCal"
;
59
break
;
60
61
case
self::ICON_ITUNES:
62
$text =
"iTunes"
;
63
break
;
64
65
case
self::ICON_ITUNES_AUDIO:
66
$text =
"iTunes Audio"
;
67
break
;
68
69
case
self::ICON_ITUNES_VIDEO:
70
$text =
"iTunes Video"
;
71
break
;
72
}
73
74
$tpl
->setVariable(
"TEXT"
, $text);
75
76
return
$tpl
->get();
77
}
78
79
}
80
81
?>
ilRSSButtonGUI\ICON_ITUNES_VIDEO
const ICON_ITUNES_VIDEO
Definition:
class.ilRSSButtonGUI.php:20
ilRSSButtonGUI\ICON_ITUNES
const ICON_ITUNES
Definition:
class.ilRSSButtonGUI.php:18
ilRSSButtonGUI\ICON_RSS_VIDEO
const ICON_RSS_VIDEO
Definition:
class.ilRSSButtonGUI.php:16
$tpl
global $tpl
Definition:
ilias.php:8
ilRSSButtonGUI\ICON_RSS_AUDIO
const ICON_RSS_AUDIO
Definition:
class.ilRSSButtonGUI.php:15
ilTemplate
special template class to simplify handling of ITX/PEAR
Definition:
class.ilTemplate.php:11
ilRSSButtonGUI
Definition:
class.ilRSSButtonGUI.php:12
ilRSSButtonGUI\ICON_ICAL
const ICON_ICAL
Definition:
class.ilRSSButtonGUI.php:17
ilRSSButtonGUI\ICON_ITUNES_AUDIO
const ICON_ITUNES_AUDIO
Definition:
class.ilRSSButtonGUI.php:19
ilRSSButtonGUI\ICON_RSS
const ICON_RSS
Definition:
class.ilRSSButtonGUI.php:14
Services
News
classes
class.ilRSSButtonGUI.php
Generated on Mon Mar 31 2025 19:00:48 for ILIAS by
1.8.13 (using
Doxyfile
)