market.php 614 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Elgg market rss view
  4. *
  5. * @package Market
  6. */
  7. $title = $vars['entity']->title;
  8. if (empty($title)) {
  9. $title = substr($vars['entity']->description,0,32);
  10. if (strlen($vars['entity']->description) > 32)
  11. $title .= " ...";
  12. }
  13. ?>
  14. <item>
  15. <guid isPermaLink='true'><?php echo $vars['entity']->getURL(); ?></guid>
  16. <pubDate><?php echo date("r",$vars['entity']->time_created) ?></pubDate>
  17. <link><?php echo $vars['entity']->address; ?></link>
  18. <title><![CDATA[<?php echo $title; ?>]]></title>
  19. <description><![CDATA[<?php echo (elgg_autop($vars['entity']->description)); ?>]]></description>
  20. </item>