af_redditimgur: also rewrite in the API handler
This commit is contained in:
parent
b65e07a12b
commit
9e62513095
|
@ -23,6 +23,7 @@ class Af_RedditImgur extends Plugin {
|
||||||
|
|
||||||
$host->add_hook($host::HOOK_RENDER_ARTICLE, $this);
|
$host->add_hook($host::HOOK_RENDER_ARTICLE, $this);
|
||||||
$host->add_hook($host::HOOK_RENDER_ARTICLE_CDM, $this);
|
$host->add_hook($host::HOOK_RENDER_ARTICLE_CDM, $this);
|
||||||
|
$host->add_hook($host::HOOK_RENDER_ARTICLE_API, $this);
|
||||||
}
|
}
|
||||||
|
|
||||||
function hook_prefs_tab($args) {
|
function hook_prefs_tab($args) {
|
||||||
|
@ -636,4 +637,10 @@ class Af_RedditImgur extends Plugin {
|
||||||
return $article;
|
return $article;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function hook_render_article_api($params) {
|
||||||
|
$article = isset($params["article"]) ? $params["article"] : $params["headline"];
|
||||||
|
|
||||||
|
return $this->hook_render_article_cdm($article);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue