Adds a route for ATOM and RSS feeds page

This commit is contained in:
ArthurHoaro 2016-03-10 18:48:21 +01:00
parent 5f8e6ebc6a
commit 8395d0b761
1 changed files with 12 additions and 0 deletions

View File

@ -15,6 +15,10 @@ class Router
public static $PAGE_DAILY = 'daily';
public static $PAGE_FEED_ATOM = 'atom';
public static $PAGE_FEED_RSS = 'rss';
public static $PAGE_TOOLS = 'tools';
public static $PAGE_CHANGEPASSWORD = 'changepasswd';
@ -79,6 +83,14 @@ class Router
return self::$PAGE_DAILY;
}
if (startsWith($query, 'do='. self::$PAGE_FEED_ATOM)) {
return self::$PAGE_FEED_ATOM;
}
if (startsWith($query, 'do='. self::$PAGE_FEED_RSS)) {
return self::$PAGE_FEED_RSS;
}
// At this point, only loggedin pages.
if (!$loggedIn) {
return self::$PAGE_LINKLIST;