mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 06:45:54 +00:00
af_redditimgur: also rewrite in the API handler
This commit is contained in:
@@ -23,6 +23,7 @@ class Af_RedditImgur extends Plugin {
|
||||
|
||||
$host->add_hook($host::HOOK_RENDER_ARTICLE, $this);
|
||||
$host->add_hook($host::HOOK_RENDER_ARTICLE_CDM, $this);
|
||||
$host->add_hook($host::HOOK_RENDER_ARTICLE_API, $this);
|
||||
}
|
||||
|
||||
function hook_prefs_tab($args) {
|
||||
@@ -636,4 +637,10 @@ class Af_RedditImgur extends Plugin {
|
||||
return $article;
|
||||
}
|
||||
|
||||
function hook_render_article_api($params) {
|
||||
$article = isset($params["article"]) ? $params["article"] : $params["headline"];
|
||||
|
||||
return $this->hook_render_article_cdm($article);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user