1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

mobile: add support for tagging/publishing articles from view mode

This commit is contained in:
Andrew Dolgov
2007-12-05 07:42:18 +01:00
parent 510ac75fa0
commit f70f7e2855
3 changed files with 57 additions and 4 deletions

View File

@@ -538,6 +538,7 @@
WHERE ref_id = '$id' AND feed_id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
$result = db_query($link, "SELECT title,link,content,feed_id,comments,int_id,
marked,published,
SUBSTRING(updated,1,16) as updated,
(SELECT icon_url FROM ttrss_feeds WHERE id = feed_id) as icon_url,
num_comments,
@@ -603,6 +604,23 @@
print "<div class=\"postTags\">Tags: $tags_str</div>";
}
if ($line["marked"] == "t" || $line["marked"] == "1") {
$marked_pic = "<img class='marked' src=\"../images/mark_set.png\">";
} else {
$marked_pic = "<img class='marked' src=\"../images/mark_unset.png\">";
}
if ($line["published"] == "t" || $line["published"] == "1") {
$published_pic = "<img class='marked' src=\"../images/pub_set.gif\">";
} else {
$published_pic = "<img class='marked' src=\"../images/pub_unset.gif\">";
}
print "<div class=\"postStarOps\">";
print "<a href=\"?go=view&id=$id&ret_feed=$ret_feed_id&feed=$feed_id&sop=ts\">$marked_pic</a>";
print "<a href=\"?go=view&id=$id&ret_feed=$ret_feed_id&feed=$feed_id&sop=tp\">$published_pic</a>";
print "</div>";
print sanitize_rss($link, $line["content"], true);;
}
@@ -675,4 +693,13 @@
print "</div>";
}
function toggleMarked($link, $ts_id) {
$result = db_query($link, "UPDATE ttrss_user_entries SET marked = NOT marked
WHERE ref_id = '$ts_id' AND owner_uid = " . $_SESSION["uid"]);
}
function togglePublished($link, $tp_id) {
$result = db_query($link, "UPDATE ttrss_user_entries SET published = NOT published
WHERE ref_id = '$tp_id' AND owner_uid = " . $_SESSION["uid"]);
}
?>