1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-28 19:21:29 +00:00

support colored labels

This commit is contained in:
Andrew Dolgov
2009-01-26 11:07:53 +01:00
parent c218ceb82c
commit 2eb9c95c97
4 changed files with 63 additions and 25 deletions

View File

@@ -444,10 +444,7 @@
print "<entry id=\"$id\"><![CDATA[";
$labels = get_article_labels($link, $id, $_SESSION["uid"]);
foreach ($labels as $l) {
print "<span class='hlLabelRef'>".$l[1]."</span>";
}
print format_article_labels($labels, $id);
print "]]></entry>";
@@ -483,10 +480,7 @@
print "<entry id=\"$id\"><![CDATA[";
$labels = get_article_labels($link, $id, $_SESSION["uid"]);
foreach ($labels as $l) {
print "<span class='hlLabelRef'>".$l[1]."</span>";
}
print format_article_labels($labels, $id);
print "]]></entry>";

View File

@@ -110,7 +110,7 @@
}
$result = db_query($link, "SELECT
id,caption
*
FROM
ttrss_labels2
WHERE
@@ -149,12 +149,20 @@
print "<tr class=\"$class\" $this_row_id>";
$line["caption"] = htmlspecialchars($line["caption"]);
$fg_color = $line["fg_color"];
$bg_color = $line["bg_color"];
if (!$fg_color) $fg_color = "black";
if (!$bg_color) $bg_color = "transparent";
print "<td width='5%' align='center'><input
onclick='toggleSelectPrefRow(this, \"label\");'
type=\"checkbox\" id=\"LICHK-".$line["id"]."\"></td>";
print "<td><span id=\"LILT-".$line["id"]."\">" . $line["caption"] .
print "<td><span class='prefsLabelEntry'
style='color : $fg_color; background-color : $bg_color'
id=\"LILT-".$line["id"]."\">" . $line["caption"] .
"</span></td>";
print "</tr>";