From bdb7369bbb55b80641c516e380ecd69237f6cf8f Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 20 May 2008 07:37:33 +0100 Subject: improve output when EXTENDED_FEEDLIST is set, font size tweaks --- functions.php | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 52 insertions(+), 9 deletions(-) (limited to 'functions.php') diff --git a/functions.php b/functions.php index 48caab061..5d4966865 100644 --- a/functions.php +++ b/functions.php @@ -1550,8 +1550,9 @@ ($unread)"; if (get_pref($link, "EXTENDED_FEEDLIST")) { + $total = getFeedArticles($link, $feed_id); print "
- $last_updated $error_notify_msg
"; + $last_updated ($total total) $error_notify_msg"; } print ""; @@ -2316,8 +2317,18 @@ } function getFeedUnread($link, $feed, $is_cat = false) { + return getFeedArticles($link, $feed, $is_cat, true); + } + + function getFeedArticles($link, $feed, $is_cat = false, $unread_only = false) { $n_feed = sprintf("%d", $feed); + if ($unread_only) { + $unread_qpart = "unread = true"; + } else { + $unread_qpart = "true"; + } + $age_qpart = getMaxAgeSubquery(); if ($is_cat) { @@ -2357,7 +2368,7 @@ $result = db_query($link, "SELECT COUNT(int_id) AS unread FROM ttrss_user_entries,ttrss_entries - WHERE unread = true AND + WHERE $unread_qpart AND ttrss_user_entries.ref_id = ttrss_entries.id AND $age_qpart AND ($match_part) AND @@ -2393,14 +2404,14 @@ ttrss_user_entries.ref_id = ttrss_entries.id AND ttrss_feeds.hidden = false AND $age_qpart AND - unread = true AND ($match_part) AND ttrss_user_entries.owner_uid = " . $_SESSION["uid"]); + $unread_qpart AND ($match_part) AND ttrss_user_entries.owner_uid = " . $_SESSION["uid"]); } else { $result = db_query($link, "SELECT COUNT(post_int_id) AS unread FROM ttrss_tags,ttrss_user_entries,ttrss_entries WHERE tag_name = '$feed' AND post_int_id = int_id AND ref_id = ttrss_entries.id - AND unread = true AND $age_qpart AND + AND $unread_qpart AND $age_qpart AND ttrss_tags.owner_uid = " . $_SESSION["uid"]); } @@ -2520,7 +2531,14 @@ $count = getFeedUnread($link, -1); if (!$ret_mode) { - print ""; + + if (get_pref($link, 'EXTENDED_FEEDLIST')) { + $xmsg_part = "xmsg=\"(" . getFeedArticles($link, $id) . " total)\""; + } else { + $xmsg_part = ""; + } + + print ""; } else { $ret_arr["-1"]["counter"] = $count; $ret_arr["-1"]["description"] = __("Starred articles"); @@ -2529,7 +2547,14 @@ $count = getFeedUnread($link, -2); if (!$ret_mode) { - print ""; + + if (get_pref($link, 'EXTENDED_FEEDLIST')) { + $xmsg_part = "xmsg=\"(" . getFeedArticles($link, $id) . " total)\""; + } else { + $xmsg_part = ""; + } + + print ""; } else { $ret_arr["-2"]["counter"] = $count; $ret_arr["-2"]["description"] = __("Published articles"); @@ -2538,7 +2563,14 @@ $count = getFeedUnread($link, -3); if (!$ret_mode) { - print ""; + + if (get_pref($link, 'EXTENDED_FEEDLIST')) { + $xmsg_part = "xmsg=\"(" . getFeedArticles($link, $id) . " total)\""; + } else { + $xmsg_part = ""; + } + + print ""; } else { $ret_arr["-3"]["counter"] = $count; $ret_arr["-3"]["description"] = __("Fresh articles"); @@ -2570,7 +2602,14 @@ $old_counters[$id] = $count; $lctrs_modified = true; if (!$ret_mode) { - print ""; + + if (get_pref($link, 'EXTENDED_FEEDLIST')) { + $xmsg_part = "xmsg=\"(" . getFeedArticles($link, $id) . " total)\""; + } else { + $xmsg_part = ""; + } + + print ""; } else { $ret_arr[$id]["counter"] = $count; $ret_arr[$id]["description"] = $label_name; @@ -2695,7 +2734,11 @@ $has_title_part = ""; } - print ""; + if (get_pref($link, 'EXTENDED_FEEDLIST')) { + $xmsg_part = "xmsg=\"(" . getFeedArticles($link, $id) . " total)\""; + } + + print ""; } } -- cgit v1.2.3-54-g00ecf