aboutsummaryrefslogtreecommitdiff
path: root/views/rss/object/file.php
blob: 1ede661ad0b074d765d7a7dfb28f3963a5768365 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php

/**
 * Tidypics RSS file object view - need to look into removing download link based on settings
 */

$title = $vars['entity']->title;
if (empty($title)) {
	$title = substr($vars['entity']->description,0,32);
	if (strlen($vars['entity']->description) > 32) {
		$title .= " ...";
	}
}
?>

	<item>
	  <guid isPermaLink='true'><?php echo $vars['entity']->getURL(); ?></guid>
	  <pubDate><?php echo date("r",$vars['entity']->time_created) ?></pubDate>
	  <link><?php echo $vars['entity']->getURL(); ?></link>
	  <title><![CDATA[<?php echo $title; ?>]]></title>
	  <description><![CDATA[<?php echo (autop($vars['entity']->description)); ?>]]></description>
	  <enclosure url="<?php echo $vars['url']; ?>pg/photos/download/<?php echo $vars['entity']->getGUID(); ?>/" length="<?php echo $vars['entity']->size(); ?>" type="<?php echo $vars['entity']->getMimeType(); ?>" />
	</item>