add some stuff to the trgm plugin

This commit is contained in:
Andrew Dolgov 2015-01-19 14:22:41 +03:00
parent 97600ddd97
commit 9a121298e1
1 changed files with 17 additions and 2 deletions

View File

@ -2,7 +2,6 @@
class Af_Psql_Trgm extends Plugin {
private $host;
private $filters = array();
function about() {
return array(1.0,
@ -98,7 +97,6 @@ class Af_Psql_Trgm extends Plugin {
placeholder=\"32\"
required=\"1\" name=\"min_title_length\" value=\"$min_title_length\"></td></tr>";
print "</table>";
print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
@ -106,6 +104,23 @@ class Af_Psql_Trgm extends Plugin {
print "</form>";
$enabled_feeds = $this->host->get($this, "enabled_feeds");
if (!array($enabled_feeds)) $enabled_feeds = array();
if (count($enabled_feeds) > 0) {
print "<h3>" . __("Currently enabled for (click to edit):") . "</h3>";
print "<ul class=\"browseFeedList\" style=\"border-width : 1px\">";
foreach ($enabled_feeds as $f) {
print "<li>" .
"<img src='images/pub_set.png'
style='vertical-align : middle'> <a href='#'
onclick='editFeed($f)'>".
getFeedTitle($f) . "</a></li>";
}
print "</ul>";
}
print "</div>";
}