aboutsummaryrefslogtreecommitdiffstats
path: root/template/standard/html/feed/item_post.php
blob: 30e97ab70a1e54db6429b8e82a9e5c9c15deaf49 (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
<?php
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
# Standard: Feed Item Template [post]        [Thomas Lange <code@nerdmind.de>] #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
#                                                                              #
# [see documentation]                                                          #
#                                                                              #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#

$HTML = $POST['BODY']['HTML']();
?>
<item>
	<title><?=escapeHTML($POST['ATTR']['NAME'])?></title>
	<link><?=$POST['URL']?></link>
	<guid isPermaLink="false"><?=$POST['GUID']?></guid>
	<pubDate><?=parseDatetime($POST['ATTR']['TIME_INSERT'], '[RFC2822]')?></pubDate>
	<dc:creator><?=escapeHTML($USER['ATTR']['FULLNAME'])?></dc:creator>
	<description><?=escapeHTML(description($HTML, 400))?></description>
	<content:encoded>
		<![CDATA[
			<?=$HTML?>
		]]>
	</content:encoded>
	<?php foreach($POST['FILE']['LIST'] as $fileURL): ?>
		<media:content url="<?=$fileURL?>" medium="image"></media:content>
	<?php endforeach; ?>
</item>