47 $this->tree = $DIC->repositoryTree();
48 $this->
lng = $DIC->language();
53 $this->encoding = $a_enc;
63 $this->ch_about = $a_ab;
73 $this->ch_title = $a_title;
83 $this->ch_link = $a_link;
93 $this->ch_desc = $a_desc;
103 $this->items[] = $a_item;
113 $a_str = str_replace([
"&",
"<",
">"], [
"&",
"<",
">"], $a_str);
119 $this->tpl =
new ilTemplate(
"tpl.rss_2_0.xml",
true,
true,
"components/ILIAS/Feeds");
121 $this->tpl->setVariable(
"XML",
"xml");
122 $this->tpl->setVariable(
"CONTENT_ENCODING", $this->
getEncoding());
128 foreach ($this->items as $item) {
129 $this->tpl->setCurrentBlock(
"rdf_seq");
130 $this->tpl->setVariable(
"RESOURCE", $item->getAbout());
131 $this->tpl->parseCurrentBlock();
134 if ($item->getDate() !=
"") {
135 $this->tpl->setCurrentBlock(
"date");
136 $d = $item->getDate();
137 $yyyy = substr(
$d, 0, 4);
138 $mm = substr(
$d, 5, 2);
139 $dd = substr(
$d, 8, 2);
140 $h = substr(
$d, 11, 2);
141 $m = substr(
$d, 14, 2);
142 $s = substr(
$d, 17, 2);
143 $this->tpl->setVariable(
145 date(
"r", mktime($h, $m, $s, $mm, $dd, $yyyy))
147 $this->tpl->parseCurrentBlock();
151 if ($item->getEnclosureUrl() !=
"") {
152 $this->tpl->setCurrentBlock(
"enclosure");
153 $this->tpl->setVariable(
"ENC_URL", $item->getEnclosureUrl());
154 $this->tpl->setVariable(
"ENC_LENGTH", $item->getEnclosureLength());
155 $this->tpl->setVariable(
"ENC_TYPE", $item->getEnclosureType());
156 $this->tpl->parseCurrentBlock();
159 $this->tpl->setCurrentBlock(
"item");
160 $this->tpl->setVariable(
"ITEM_ABOUT", $item->getAbout());
161 $this->tpl->setVariable(
"ITEM_TITLE", $item->getTitle());
162 $this->tpl->setVariable(
"ITEM_DESCRIPTION", $item->getDescription());
163 $this->tpl->setVariable(
"ITEM_LINK", $item->getLink());
164 $this->tpl->parseCurrentBlock();
167 $this->tpl->parseCurrentBlock();
168 return $this->tpl->get();
173 header(
"Content-Type: text/xml; charset=UTF-8;");
189 $r_path = array_reverse(
$path);
193 foreach ($r_path as $key => $row) {
195 if (in_array($row[
"type"], array(
"root",
"cat",
"grp",
"crs"))) {
196 $first = $row[
"child"];
199 $omit[$row[
"child"]] = $do_omit;
203 foreach (
$path as $key => $row) {
204 if ($first == $row[
"child"]) {
208 if ($add_it && !$omit[$row[
"child"]] &&
209 (($row[
"child"] != $a_ref_id))) {
210 if ($row[
"title"] ==
"ILIAS" && $row[
"type"] ==
"root") {
211 $row[
"title"] = $lng->
txt(
"repository");
213 $items[] = $row[
"title"];
218 if (count($items) > 0) {
219 return "[" . implode(
" > ", $items) .
"]";
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setChannelTitle(string $a_title)
setEncoding(string $a_enc)
addItem(ilFeedItem $a_item)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
getPathFull(int $a_endnode_id, int $a_startnode_id=0)
get path from a given startnode to a given endnode if startnode is not given the rootnode is startnod...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setChannelDescription(string $a_desc)
setChannelLink(string $a_link)
prepareStr(string $a_str)
getContextPath(int $a_ref_id)
setChannelAbout(string $a_ab)