From 9d9ed2b32a1a9c2560a43a85c94caecf140974d5 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 26 Mar 2013 18:55:57 +0400 Subject: add classic mobile as a system plugin --- plugins/mobile/mobile-functions.php | 539 ++++++++++++++++++++++++++++++++++++ 1 file changed, 539 insertions(+) create mode 100644 plugins/mobile/mobile-functions.php (limited to 'plugins/mobile/mobile-functions.php') diff --git a/plugins/mobile/mobile-functions.php b/plugins/mobile/mobile-functions.php new file mode 100644 index 000000000..8c2ab88cf --- /dev/null +++ b/plugins/mobile/mobile-functions.php @@ -0,0 +1,539 @@ + 0) { + $limit_qpart = "LIMIT $limit OFFSET $offset"; + } else { + $limit_qpart = ""; + } + + $result = db_query($link, "SELECT id, + title, + (SELECT COUNT(id) FROM ttrss_entries,ttrss_user_entries + WHERE feed_id = ttrss_feeds.id AND unread = true + AND ttrss_user_entries.ref_id = ttrss_entries.id + AND owner_uid = '$owner_uid') AS unread + FROM ttrss_feeds + WHERE + ttrss_feeds.owner_uid = '$owner_uid' + ORDER BY $order_by $limit_qpart"); + + if (!$offset) print '"; + + } + + function render_category($link, $cat_id, $offset) { + $owner_uid = $_SESSION["uid"]; + + if ($cat_id >= 0) { + + if ($cat_id != 0) { + $cat_query = "cat_id = '$cat_id'"; + } else { + $cat_query = "cat_id IS NULL"; + } + + if (mobile_get_pref($link, "SORT_FEEDS_UNREAD")) { + $order_by = "unread DESC, title"; + } else { + $order_by = "title"; + } + + $result = db_query($link, "SELECT id, + title, + (SELECT COUNT(id) FROM ttrss_entries,ttrss_user_entries + WHERE feed_id = ttrss_feeds.id AND unread = true + AND ttrss_user_entries.ref_id = ttrss_entries.id + AND owner_uid = '$owner_uid') as unread + FROM ttrss_feeds + WHERE + ttrss_feeds.owner_uid = '$owner_uid' AND + $cat_query + ORDER BY $order_by"); + + $title = getCategoryTitle($link, $cat_id); + + print ""; + } else if ($cat_id == -1) { + + $title = __('Special'); + + print ""; + } else if ($cat_id == -2) { + + $title = __('Labels'); + + print ""; + } + } + + function render_categories_list($link) { + $owner_uid = $_SESSION["uid"]; + + $cat_browse = mobile_get_pref($link, "BROWSE_CATS"); + + print '"; + } + + function render_headlines_list($link, $feed_id, $cat_id, $offset, $search, + $is_cat = false) { + + $feed_id = $feed_id; + $limit = 15; + $filter = ''; + + if (!mobile_get_pref($link, "HIDE_READ")) + $view_mode = "all_articles"; + else + $view_mode = 'adaptive'; + + if ($search) { + $search_mode = 'this_feed'; + } else { + $search_mode = ''; + } + + $qfh_ret = queryFeedHeadlines($link, $feed_id, $limit, + $view_mode, $is_cat, $search, $search_mode, + "score DESC, date_entered ".(mobile_get_pref($link, 'REVERSE_HEADLINES') ? 'ASC' : 'DESC'), $offset); + + $result = $qfh_ret[0]; + $feed_title = $qfh_ret[1]; + + if (!$offset) { + + print "
+ + + + +
+

Search

+ Cancel + Search + + + +
+
"; + + if ($cat_id) { + $cat_title = getCategoryTitle($link, $cat_id); + + print "