mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-24 14:31:29 +00:00
filter editor: show score_pic in params column
This commit is contained in:
@@ -4918,6 +4918,8 @@
|
||||
|
||||
if ($score > 100) {
|
||||
$score_pic = "score_high.png";
|
||||
} else if ($score < -100) {
|
||||
$score_pic = "score_low.png";
|
||||
} else {
|
||||
$score_pic = "score_neutral.png";
|
||||
}
|
||||
|
||||
@@ -303,7 +303,24 @@
|
||||
$line["reg_exp"] = htmlspecialchars($line["reg_exp"]);
|
||||
|
||||
if (!$line["feed_title"]) $line["feed_title"] = __("All feeds");
|
||||
if (!$line["action_param"]) $line["action_param"] = "—";
|
||||
|
||||
if (!$line["action_param"]) {
|
||||
$line["action_param"] = "—";
|
||||
} else if ($line["action_name"] == "score") {
|
||||
|
||||
if ($line["action_param"] > 100) {
|
||||
$score_pic = "score_high.png";
|
||||
} else if ($line["action_param"] < -100) {
|
||||
$score_pic = "score_low.png";
|
||||
} else {
|
||||
$score_pic = "score_neutral.png";
|
||||
}
|
||||
|
||||
$score_pic = "<img class='hlScorePic' src=\"images/$score_pic\">";
|
||||
|
||||
$line["action_param"] = "$score_pic " . $line["action_param"];
|
||||
|
||||
}
|
||||
|
||||
$line["feed_title"] = htmlspecialchars($line["feed_title"]);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user