From a14873d5b4bde01f1470db5a2bb0d49ac0c8cd3c Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 8 Feb 2021 21:06:14 +0300 Subject: more hooks, also add type hint for PluginHost::getInstance() --- classes/article.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'classes/article.php') diff --git a/classes/article.php b/classes/article.php index a79241bf6..6729443a1 100755 --- a/classes/article.php +++ b/classes/article.php @@ -731,9 +731,11 @@ class Article extends Handler_Protected { define('ARTICLE_KIND_VIDEO', 2); define('ARTICLE_KIND_YOUTUBE', 3); - foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ARTICLE_IMAGE) as $p) { - list ($article_image, $article_stream, $content) = $p->hook_article_image($enclosures, $content, $site_url); - } + PluginHost::getInstance()->chain_hooks_callback(PluginHost::HOOK_ARTICLE_IMAGE, + function ($result) use (&$article_image, &$article_stream, &$content) { + list ($article_image, $article_stream, $content) = $result; + }, + $enclosures, $content, $site_url); if (!$article_image && !$article_stream) { $tmpdoc = new DOMDocument(); -- cgit v1.2.3