summaryrefslogtreecommitdiff
path: root/include/rssfuncs.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-12-24 14:13:03 +0400
committerAndrew Dolgov <[email protected]>2012-12-24 14:13:03 +0400
commit4412b877d02c16c033a28fd2b9d9fafa9fd16214 (patch)
tree834c9f541b463f966e97040cae7857b0e07ec8f2 /include/rssfuncs.php
parentfa6fbd3659a5f6dd5d2dc20497ec917737210ee9 (diff)
implement HOOK_FEED_PARSED, add example plugin (refs #424)
Diffstat (limited to 'include/rssfuncs.php')
-rw-r--r--include/rssfuncs.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/rssfuncs.php b/include/rssfuncs.php
index a28cb2063..817490a84 100644
--- a/include/rssfuncs.php
+++ b/include/rssfuncs.php
@@ -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);
}