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) { return "note"; } function edit() { $param = $_REQUEST['param']; $sth = $this->pdo->prepare("SELECT note FROM ttrss_user_entries WHERE ref_id = ? AND owner_uid = ?"); $sth->execute([$param, $_SESSION['uid']]); if ($row = $sth->fetch()) { $note = $row['note']; print_hidden("id", "$param"); print_hidden("op", "pluginhandler"); print_hidden("method", "setNote"); print_hidden("plugin", "note"); print "
"; print ""; print " |