From 0966ea378b623a7b2fe5f20e4bdc39dac8c446ab Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 4 May 2008 05:19:19 +0100 Subject: filter editor: show score_pic in params column --- modules/pref-filters.php | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/pref-filters.php b/modules/pref-filters.php index bc5704b57..ce4997673 100644 --- a/modules/pref-filters.php +++ b/modules/pref-filters.php @@ -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 = ""; + + $line["action_param"] = "$score_pic " . $line["action_param"]; + + } $line["feed_title"] = htmlspecialchars($line["feed_title"]); -- cgit v1.2.3