From: Andrew Dolgov Date: Tue, 9 Apr 2013 12:46:56 +0000 (+0400) Subject: add HOOK_ARTICLE_LEFT_BUTTON X-Git-Tag: 1.7.9~35 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=ccb2b8dd423b252f8d93b34f92ea567aae79cffe;p=tt-rss.git add HOOK_ARTICLE_LEFT_BUTTON --- diff --git a/classes/feeds.php b/classes/feeds.php index 521aec70..6427559e 100644 --- a/classes/feeds.php +++ b/classes/feeds.php @@ -678,6 +678,10 @@ class Feeds extends Handler_Protected { $reply['content'] .= "
"; + foreach ($pluginhost->get_hooks($pluginhost::HOOK_ARTICLE_LEFT_BUTTON) as $p) { + $reply['content'] .= $p->hook_article_left_button($line); + } + $tags_str = format_tags_string($line["tags"], $id); $reply['content'] .= "Tags diff --git a/classes/pluginhost.php b/classes/pluginhost.php index a7502703..9ae7b809 100644 --- a/classes/pluginhost.php +++ b/classes/pluginhost.php @@ -28,6 +28,7 @@ class PluginHost { const HOOK_ACTION_ITEM = 16; const HOOK_HEADLINE_TOOLBAR_BUTTON = 17; const HOOK_HOTKEY_INFO = 18; + const HOOK_ARTICLE_LEFT_BUTTON = 19; const KIND_ALL = 1; const KIND_SYSTEM = 2; diff --git a/include/functions.php b/include/functions.php index f639b973..c4eed06a 100644 --- a/include/functions.php +++ b/include/functions.php @@ -3141,18 +3141,23 @@ position=\"below\">$tags_str_full
"; global $pluginhost; - foreach ($pluginhost->get_hooks($pluginhost::HOOK_ARTICLE_BUTTON) as $p) { $rv['content'] .= $p->hook_article_button($line); } - } else { $tags_str = strip_tags($tags_str); $rv['content'] .= "$tags_str"; } $rv['content'] .= ""; - $rv['content'] .= "
$entry_comments
"; + $rv['content'] .= "
"; + + global $pluginhost; + foreach ($pluginhost->get_hooks($pluginhost::HOOK_ARTICLE_LEFT_BUTTON) as $p) { + $rv['content'] .= $p->hook_article_left_button($line); + } + + $rv['content'] .= "$entry_comments
"; if ($line["orig_feed_id"]) {