ACC SHELL

Path : /srv/www/vhosts/agroing/web/views/_default/sites/
File Upload :
Current File : /srv/www/vhosts/agroing/web/views/_default/sites/rss.php

<?
  header('Expires: ' . gmdate('D, d M Y H:i:s') . '  GMT');
  header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . '  GMT');
  header('Content-Type: text/xml; charset=utf-8');
?>
<?='<?xml version="1.0" encoding="UTF-8"?>'?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"  xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
  <title>Chytré bydlení</title>
  <description>Chytré bydlení</description>
  <link>http://www.chytre-bydleni.cz<?=$this->sites->url()?></link>
  <language>cs</language>
  <ttl>60</ttl>
  <atom:link href="http://www.chytre-bydleni.cz<?=$this->sites->url()?>" rel="self" type="application/rss+xml" />
  <? foreach($this->sites->set_order('published_at')->set_limit(10)->get_all() as $item){ ?>
    <item>
      <title><?=Tools::truncate($item->part("title"),100)?></title>
      <description><?=Tools::truncate($item->part("text"),300)?></description>
      <pubDate><?=gmdate("D, d M Y H:i:s", strtotime($item->a['published_at']))?> GMT</pubDate>
      <guid>http://www.chytre-bydleni.cz<?=$item->url()?></guid>
      <link>http://www.chytre-bydleni.cz<?=$item->url()?></link>
    </item>
  <? } ?>
  
</channel>
</rss>

ACC SHELL 2018