tt-rss/plugins/note/init.php

75 lines
2 KiB
PHP
Raw Normal View History

2011-12-21 07:58:06 +01:00
<?php
2012-12-23 12:29:16 +01:00
class Note extends Plugin {
2012-12-23 11:52:18 +01:00
private $host;
function about() {
return array(1.0,
"Adds support for setting article notes",
"fox");
}
function init($host) {
2012-12-23 11:52:18 +01:00
$this->host = $host;
$host->add_hook($host::HOOK_ARTICLE_BUTTON, $this);
}
function get_js() {
return file_get_contents(dirname(__FILE__) . "/note.js");
}
function hook_article_button($line) {
2013-03-20 22:59:08 +01:00
return "<img src=\"plugins/note/note.png\"
2012-12-23 11:52:18 +01:00
style=\"cursor : pointer\" style=\"cursor : pointer\"
onclick=\"editArticleNote(".$line["id"].")\"
class='tagsPic' title='".__('Edit article note')."'>";
2011-12-21 07:58:06 +01:00
}
function edit() {
$param = db_escape_string($_REQUEST['param']);
2011-12-21 07:58:06 +01:00
$result = db_query("SELECT note FROM ttrss_user_entries WHERE
2011-12-21 07:58:06 +01:00
ref_id = '$param' AND owner_uid = " . $_SESSION['uid']);
$note = db_fetch_result($result, 0, "note");
print_hidden("id", "$param");
print_hidden("op", "pluginhandler");
print_hidden("method", "setNote");
print_hidden("plugin", "note");
2011-12-21 07:58:06 +01:00
print "<table width='100%'><tr><td>";
print "<textarea dojoType=\"dijit.form.SimpleTextarea\"
2015-08-11 17:44:07 +02:00
style='font-size : 12px; width : 98%; height: 100px;'
2011-12-21 07:58:06 +01:00
placeHolder='body#ttrssMain { font-size : 14px; };'
name='note'>$note</textarea>";
print "</td></tr></table>";
print "<div class='dlgButtons'>";
print "<button dojoType=\"dijit.form.Button\"
onclick=\"dijit.byId('editNoteDlg').execute()\">".__('Save')."</button> ";
print "<button dojoType=\"dijit.form.Button\"
onclick=\"dijit.byId('editNoteDlg').hide()\">".__('Cancel')."</button>";
print "</div>";
}
function setNote() {
$id = db_escape_string($_REQUEST["id"]);
$note = trim(strip_tags(db_escape_string($_REQUEST["note"])));
2011-12-21 07:58:06 +01:00
db_query("UPDATE ttrss_user_entries SET note = '$note'
2011-12-21 07:58:06 +01:00
WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
$formatted_note = Article::format_article_note($id, $note);
2011-12-21 07:58:06 +01:00
print json_encode(array("note" => $formatted_note,
"raw_length" => mb_strlen($note)));
}
2013-04-19 15:31:56 +02:00
function api_version() {
return 2;
}
}