1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-03 18:39:15 +00:00

implement HOOK_FEED_PARSED, add example plugin (refs #424)

This commit is contained in:
Andrew Dolgov
2012-12-24 14:13:03 +04:00
parent fa6fbd3659
commit 4412b877d0
3 changed files with 27 additions and 1 deletions

View File

@@ -261,6 +261,9 @@
if (!$rss->error()) {
global $pluginhost;
$pluginhost->run_hooks($pluginhost::HOOK_FEED_PARSED, "hook_feed_parsed", $rss);
if ($debug_enabled) {
_debug("update_rss_feed: processing feed data...");
}
@@ -521,7 +524,6 @@
}
// TODO: less memory-hungry implementation
global $pluginhost;
if ($debug_enabled) {
_debug("update_rss_feed: applying plugin filters..");
@@ -534,6 +536,7 @@
"tags" => $entry_tags,
"author" => $entry_author);
global $pluginhost;
foreach ($pluginhost->get_hooks($pluginhost::HOOK_ARTICLE_FILTER) as $plugin) {
$article = $plugin->hook_article_filter($article);
}