aboutsummaryrefslogtreecommitdiff
path: root/app/views/helpers/view/rss_view.phtml
blob: 9358ef2a510b4a9c45bdd19db71e4145b17d17af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php echo '<?xml version="1.0" encoding="UTF-8" ?>'; ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><?php echo $this->rss_title; ?></title>
		<link><?php echo Url::display(null, 'html', true); ?></link>
		<description><?php echo Translate::t ('rss_feeds_of', $this->rss_title); ?></description>
		<pubDate><?php echo date('D, d M Y H:i:s O'); ?></pubDate>
		<lastBuildDate><?php echo gmdate('D, d M Y H:i:s'); ?> GMT</lastBuildDate>
		<atom:link href="<?php echo Url::display ($this->rss_url, 'html', true); ?>" rel="self" type="application/rss+xml" />
<?php
$items = $this->entryPaginator->items ();
foreach ($items as $item) {
?>
		<item>
			<title><?php echo htmlspecialchars(html_entity_decode($item->title (), ENT_NOQUOTES, 'UTF-8'), ENT_NOQUOTES, 'UTF-8'); ?></title>
			<link><?php echo $item->link (); ?></link>
			<?php $author = $item->author (); ?>
			<?php if ($author != '') { ?>
			<dc:creator><?php echo $author; ?></dc:creator>
			<?php } ?>
			<description><![CDATA[<?php
	echo $item->content ();
?>]]></description>
			<pubDate><?php echo date('D, d M Y H:i:s O', $item->date (true)); ?></pubDate>
			<guid isPermaLink="false"><?php echo $item->id (); ?></guid>
		</item>
<?php } ?>

	</channel>
</rss>