forked from maellak/openeclass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rss.php
59 lines (52 loc) · 2.5 KB
/
rss.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
/* ========================================================================
* Open eClass 3.0
* E-learning and Course Management System
* ========================================================================
* Copyright 2003-2014 Greek Universities Network - GUnet
* A full copyright notice can be read in "/info/copyright.txt".
* For a full list of contributors, see "credits.txt".
*
* Open eClass is an open platform distributed in the hope that it will
* be useful (without any warranty), under the terms of the GNU (General
* Public License) as published by the Free Software Foundation.
* The full license can be read in "/info/license/license_gpl.txt".
*
* Contact address: GUnet Asynchronous eLearning Group,
* Network Operations Center, University of Athens,
* Panepistimiopolis Ilissia, 15784, Athens, Greece
* e-mail: info@openeclass.org
* ======================================================================== */
/*
* Announcements RSS Feed Component
*/
require_once 'include/init.php';
$result = Database::get()->querySingle("SELECT DATE_FORMAT(`date`,'%a, %d %b %Y %T +0300') AS dateformat
FROM admin_announcement
WHERE visible = 1 AND lang = ?s
ORDER BY `date` DESC", $language);
$lastbuilddate = $result->dateformat;
header("Content-Type: application/xml;");
echo "<?xml version='1.0' encoding='utf-8'?>";
echo "<rss version='2.0' xmlns:atom='http://www.w3.org/2005/Atom'>";
echo "<channel>";
echo "<atom:link href='${urlServer}rss.php' rel='self' type='application/rss+xml' />";
echo "<title>$langAnnouncements $siteName</title>";
echo "<link>" . $urlServer . "rss.php?lang=$language</link>";
echo "<description>$langAnnouncements</description>";
echo "<lastBuildDate>$lastbuilddate</lastBuildDate>";
echo "<language>" . $language . "</language>";
$sql = Database::get()->queryArray("SELECT id, title, body, DATE_FORMAT(`date`,'%a, %d %b %Y %T +0300') AS dateformat
FROM admin_announcement
WHERE visible = 1 AND lang = ?s
ORDER BY `date` DESC", $language);
foreach ($sql as $r) {
echo "<item>";
echo "<title>" . htmlspecialchars($r->title, ENT_NOQUOTES) . "</title>";
echo "<link>" . $urlServer . "modules/announcements/main_ann.php?aid=" . $r->id . "</link>";
echo "<description>" . htmlspecialchars($r->body, ENT_NOQUOTES) . "</description>";
echo "<pubDate>" . $r->dateformat . "</pubDate>";
echo "<guid isPermaLink='false'>" . $r->dateformat . $r->id . "</guid>";
echo "</item>";
}
echo "</channel></rss>";