1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-06 23:21:32 +00:00

add pluginhost HOOK_HEADLINES_BEFORE (refs #814)

This commit is contained in:
Andrew Dolgov
2014-08-19 14:24:34 +04:00
parent 02b0348a8a
commit 7eb87b80d5
2 changed files with 7 additions and 0 deletions

View File

@@ -281,6 +281,12 @@ class Feeds extends Handler_Protected {
}
} */
if ($offset == 0) {
foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_HEADLINES_BEFORE) as $p) {
$reply['content'] .= $p->hook_headlines_before($feed, $cat_view, $qfh_ret);
}
}
if ($this->dbh->num_rows($result) > 0) {
$lnum = $offset;