summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-10-23 16:40:55 +0100
committerAndrew Dolgov <[email protected]>2005-10-23 16:40:55 +0100
commitfc69e64169acac42622be2fcf3fba14711b11768 (patch)
treec881dfaf846c9bbefce55fe2f35703d02096973e /backend.php
parentbdd01d3f31b2ab7529bd8d7365a3b0e15b95cb9b (diff)
start work on showing number of unread articles in title
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/backend.php b/backend.php
index 6f5e2dd59..495cebe72 100644
--- a/backend.php
+++ b/backend.php
@@ -28,6 +28,13 @@
/* FIXME this needs reworking */
+ function getGlobalCounters($link) {
+ $result = db_query($link, "SELECT count(id) as c_id FROM ttrss_entries
+ WHERE unread = true");
+ $c_id = db_fetch_result($result, 0, "c_id");
+ print "<counter id='global-unread' counter='$c_id'/>";
+ }
+
function getTagCounters($link) {
$result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
FROM ttrss_tags,ttrss_entries WHERE
@@ -276,8 +283,8 @@
getLabelCounters($link);
getFeedCounters($link);
getTagCounters($link);
+ getGlobalCounters($link);
print "</rpc-reply>";
-
}
if ($subop == "mark") {
@@ -321,6 +328,7 @@
if (strchr($omode, "l")) getLabelCounters($link);
if (strchr($omode, "f")) getFeedCounters($link);
if (strchr($omode, "t")) getTagCounters($link);
+ getGlobalCounters($link);
print "</rpc-reply>";
}