summaryrefslogtreecommitdiff
path: root/classes/handler
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2016-03-01 14:39:36 +0300
committerAndrew Dolgov <[email protected]>2016-03-01 14:39:36 +0300
commit399678a14e98cefd61f228b11e20fa711ea6d55b (patch)
treed9ba74caa8672d3cbdaaa83ffda71f7900372a11 /classes/handler
parent94d425fe4a21d41737fe656d9c54c38775fbd132 (diff)
add PluginHost.HOOK_ARTICLE_EXPORT_FEED
Diffstat (limited to 'classes/handler')
-rw-r--r--classes/handler/public.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/classes/handler/public.php b/classes/handler/public.php
index 1cc568622..f37d1f67f 100644
--- a/classes/handler/public.php
+++ b/classes/handler/public.php
@@ -127,12 +127,17 @@ class Handler_Public extends Handler {
$tpl->setVariable('SELF_URL', htmlspecialchars(get_self_url_prefix()), true);
while ($line = $this->dbh->fetch_assoc($result)) {
+
$line["content_preview"] = truncate_string(strip_tags($line["content"]), 100, '...');
foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
$line = $p->hook_query_headlines($line);
}
+ foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ARTICLE_EXPORT_FEED) as $p) {
+ $line = $p->hook_article_export_feed($line);
+ }
+
$tpl->setVariable('ARTICLE_ID',
htmlspecialchars($orig_guid ? $line['link'] :
$this->make_article_tag_uri($line['id'], $line['date_entered'])), true);
@@ -214,10 +219,17 @@ class Handler_Public extends Handler {
$feed['articles'] = array();
while ($line = $this->dbh->fetch_assoc($result)) {
+
$line["content_preview"] = truncate_string(strip_tags($line["content_preview"]), 100, '...');
+
foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
$line = $p->hook_query_headlines($line, 100);
}
+
+ foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ARTICLE_EXPORT_FEED) as $p) {
+ $line = $p->hook_article_export_feed($line);
+ }
+
$article = array();
$article['id'] = $line['link'];