summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-03-28 07:12:45 +0100
committerAndrew Dolgov <[email protected]>2006-03-28 07:12:45 +0100
commitfb1fb4ab1facad22f9f9bfb868efa35500d90abf (patch)
tree41afdecde81014df5bee198ad9a35c51993d24de /functions.php
parent3b0f23de404fb1616a80db06b8641d2f44a80291 (diff)
show last update time/status in feed tooltip (#55)
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php23
1 files changed, 19 insertions, 4 deletions
diff --git a/functions.php b/functions.php
index 825b19831..adb71be23 100644
--- a/functions.php
+++ b/functions.php
@@ -686,7 +686,7 @@
}
function printFeedEntry($feed_id, $class, $feed_title, $unread, $icon_file, $link,
- $rtl_content = false) {
+ $rtl_content = false, $last_updated = false, $last_error = false) {
if (file_exists($icon_file) && filesize($icon_file) > 0) {
$feed_icon = "<img id=\"FIMG-$feed_id\" src=\"$icon_file\">";
@@ -700,7 +700,13 @@
$rtl_tag = "dir=\"ltr\"";
}
- $feed = "<a href=\"javascript:viewfeed('$feed_id', 0);\">$feed_title</a>";
+ if ($last_error) {
+ $link_title = "Error: $last_error ($last_updated)";
+ } else {
+ $link_title = "Updated: $last_updated";
+ }
+
+ $feed = "<a title=\"$link_title\" id=\"FEEDL-$feed_id\" href=\"javascript:viewfeed('$feed_id', 0);\">$feed_title</a>";
print "<li id=\"FEEDR-$feed_id\" class=\"$class\">";
if (get_pref($link, 'ENABLE_FEED_ICONS')) {
@@ -1399,6 +1405,7 @@
$old_counters = $_SESSION["fctr_last_value"];
$result = db_query($link, "SELECT id,last_error,parent_feed,
+ SUBSTRING(last_updated,1,19) AS last_updated,
(SELECT count(id)
FROM ttrss_entries,ttrss_user_entries
WHERE feed_id = ttrss_feeds.id AND
@@ -1409,12 +1416,20 @@
$fctrs_modified = false;
+ $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
+
while ($line = db_fetch_assoc($result)) {
$id = $line["id"];
$count = $line["count"];
$last_error = htmlspecialchars($line["last_error"]);
-
+
+ if (get_pref($link, 'HEADLINES_SMART_DATE')) {
+ $last_updated = smart_date_time(strtotime($line["last_updated"]));
+ } else {
+ $last_updated = date($short_date, strtotime($line["last_updated"]));
+ }
+
$has_img = is_file(ICONS_DIR . "/$id.ico");
$tmp_result = db_query($link,
@@ -1445,7 +1460,7 @@
$has_img_part = "";
}
- print "<counter type=\"feed\" id=\"$id\" counter=\"$count\" $has_img_part $error_part/>";
+ print "<counter type=\"feed\" id=\"$id\" counter=\"$count\" $has_img_part $error_part updated=\"$last_updated\"/>";
}
}