]> git.wh0rd.org - tt-rss.git/blobdiff - plugins/note/init.php
move label stuff to Labels class
[tt-rss.git] / plugins / note / init.php
index f5816bc27e98da7c3af5a84a34118f7de8ea40b6..65cdf30e4854ec74121b19c3dc1112ded853debf 100644 (file)
@@ -34,14 +34,14 @@ class Note extends Plugin {
 
                $note = db_fetch_result($result, 0, "note");
 
-               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"id\" value=\"$param\">";
-               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pluginhandler\">";
-               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setNote\">";
-               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"plugin\" value=\"note\">";
+               print_hidden("id", "$param");
+               print_hidden("op", "pluginhandler");
+               print_hidden("method", "setNote");
+               print_hidden("plugin", "note");
 
                print "<table width='100%'><tr><td>";
                print "<textarea dojoType=\"dijit.form.SimpleTextarea\"
-                       style='font-size : 12px; width : 100%; height: 100px;'
+                       style='font-size : 12px; width : 98%; height: 100px;'
                        placeHolder='body#ttrssMain { font-size : 14px; };'
                        name='note'>$note</textarea>";
                print "</td></tr></table>";
@@ -62,11 +62,14 @@ class Note extends Plugin {
                db_query("UPDATE ttrss_user_entries SET note = '$note'
                        WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
 
-               $formatted_note = format_article_note($id, $note);
+               $formatted_note = Article::format_article_note($id, $note);
 
                print json_encode(array("note" => $formatted_note,
                                "raw_length" => mb_strlen($note)));
        }
 
-}
-?>
+       function api_version() {
+               return 2;
+       }
+
+}
\ No newline at end of file