aboutsummaryrefslogtreecommitdiffstats
path: root/template/standard/html/feed/item_post.php
blob: 7f477d6a573f474191b9d6693b8d5d15cde2916d (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
<?php
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
# Standard: Feed Item Template [post]        [Thomas Lange <code@nerdmind.de>] #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
#                                                                              #
# [see documentation]                                                          #
#                                                                              #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
?>
<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($POST['BODY']['HTML'](), 400))?></description>
	<content:encoded>
		<![CDATA[
			<?=$POST['BODY']['HTML']()?>
		]]>
	</content:encoded>
	<?php foreach($POST['FILE']['LIST'] as $fileURL): ?>
		<media:content url="<?=$fileURL?>" medium="image"></media:content>
	<?php endforeach; ?>
</item>