<?php
/*-------------------------------------------------------+
| PHPFusion Content Management System
| Copyright (C) PHP Fusion Inc
| https://phpfusion.com/
+--------------------------------------------------------+
| Filename: rss_blog.php
| Author: Core Development Team
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
require_once __DIR__.'../../../../maincore.php';
if (file_exists(INFUSIONS.'rss_feeds_panel/locale/'.LOCALESET.'rss.php')) {
$locale = fusion_get_locale('', INFUSIONS.'rss_feeds_panel/locale/'.LOCALESET.'rss.php');
} else {
$locale = fusion_get_locale('', INFUSIONS.'rss_feeds_panel/locale/English/rss.php');
}
$settings = fusion_get_settings();
require_once INFUSIONS.'rss_feeds_panel/RSS.php';
if (defined('BLOG_EXISTS')) {
$result = dbquery("SELECT * FROM ".DB_BLOG."
WHERE ".groupaccess('blog_visibility').(multilang_table('BL') ? " AND ".in_group('blog_language', LANGUAGE) : '')."
ORDER BY blog_datestamp DESC LIMIT 0,10
");
header('Content-Type: application/rss+xml; charset='.$locale['charset']);
$rss = new RSS('blog', $settings['sitename'].' - '.$locale['rss_blog'].(multilang_table('BL') ? $locale['rss_in'].LANGUAGE : ''));
if (dbrows($result) != 0) {
while ($data = dbarray($result)) {
$rss->addItem($data['blog_subject'], $settings['siteurl'].'infusions/blog/blog.php?readmore='.$data['blog_id'], $data['blog_blog']);
}
} else {
$rss->addItem($settings['sitename'].' - '.$locale['rss_blog'], $settings['siteurl'], $locale['rss_nodata']);
}
$rss->write();
}