06.27
php
saved
Nayosis
Note
Nayosis did not leave a note
Nayosis did not leave a note
- // Le controller
- $this->layout = 'xml';
- //Dernières actus
- 'Article.datePublication ' => '<= CURRENT_DATE',
- 'Article.article_id' => '>= 0'
- );
- $fields = array('Article.id','Article.title', 'Article.slug', 'Article.datePublication', 'Article.chapeau', 'Sphere.title', 'Sphere.id', 'Sphere.slug');
- $this->set('articles', $this->Article->findAll($conditions, $fields, 'Article.datePublication DESC', 10));
- // La vue
- <rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
- <channel>
- <title>monsite.fr : les news</title>
- <link>http://www.monsite.fr/</link>
- <description>Toutes les news</description>
- <language>fr</language>
- <generator>CakePHP</generator>
- <webMaster>webmaster@monsite.fr</webMaster>
- <?php foreach ($articles as $article): ?>
- <item>
- <description><?php echo utf8_encode(strip_tags(html_entity_decode($article['Article']['chapeau']))); ?></description>
- <link>http://www.monsite.fr/articles/view/<?= $article['Article']['id']; ?>/<?= $article['Article']['slug']; ?></link>
- <guid>http://www.monsite.fr/articles/view/<?= $article['Article']['id']; ?>/<?= $article['Article']['slug']; ?></guid>
- <pubDate><?php echo $time->nice($time->gmt($article['Article']['datePublication'])) . ' GMT'; ?></pubDate>
- </item>
- <?php endforeach; ?>
- </channel>
- </rss>
Parsed in 0.089 seconds, using GeSHi 1.0.7.14