<?php
/*-------------------------------------------------------+
| PHPFusion Content Management System
| Copyright (C) PHP Fusion Inc
| https://phpfusion.com/
+--------------------------------------------------------+
| Filename: rss_news.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('NEWS_EXISTS')) {
$result = dbquery("SELECT *
FROM ".DB_NEWS."
WHERE ".groupaccess('news_visibility').(multilang_table('NS') ? " AND ".in_group('news_language', LANGUAGE) : '')."
ORDER BY news_datestamp DESC LIMIT 0,10
");
header('Content-Type: application/rss+xml; charset='.$locale['charset']);
$rss = new RSS('news', $settings['sitename'].' - '.$locale['rss_news'].(multilang_table('NS') ? $locale['rss_in'].LANGUAGE : ''));
if (dbrows($result) != 0) {
while ($data = dbarray($result)) {
$rss->addItem($data['news_subject'], $settings['siteurl'].'infusions/news/news.php?readmore='.$data['news_id'], $data['news_news']);
}
} else {
$rss->addItem($settings['sitename'].' - '.$locale['rss_news'], $settings['siteurl'], $locale['rss_news']);
}
$rss->write();
}