add PluginHost.HOOK_ARTICLE_EXPORT_FEED
This commit is contained in:
parent
94d425fe4a
commit
399678a14e
|
@ -127,12 +127,17 @@ class Handler_Public extends Handler {
|
||||||
|
|
||||||
$tpl->setVariable('SELF_URL', htmlspecialchars(get_self_url_prefix()), true);
|
$tpl->setVariable('SELF_URL', htmlspecialchars(get_self_url_prefix()), true);
|
||||||
while ($line = $this->dbh->fetch_assoc($result)) {
|
while ($line = $this->dbh->fetch_assoc($result)) {
|
||||||
|
|
||||||
$line["content_preview"] = truncate_string(strip_tags($line["content"]), 100, '...');
|
$line["content_preview"] = truncate_string(strip_tags($line["content"]), 100, '...');
|
||||||
|
|
||||||
foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
|
foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
|
||||||
$line = $p->hook_query_headlines($line);
|
$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',
|
$tpl->setVariable('ARTICLE_ID',
|
||||||
htmlspecialchars($orig_guid ? $line['link'] :
|
htmlspecialchars($orig_guid ? $line['link'] :
|
||||||
$this->make_article_tag_uri($line['id'], $line['date_entered'])), true);
|
$this->make_article_tag_uri($line['id'], $line['date_entered'])), true);
|
||||||
|
@ -214,10 +219,17 @@ class Handler_Public extends Handler {
|
||||||
$feed['articles'] = array();
|
$feed['articles'] = array();
|
||||||
|
|
||||||
while ($line = $this->dbh->fetch_assoc($result)) {
|
while ($line = $this->dbh->fetch_assoc($result)) {
|
||||||
|
|
||||||
$line["content_preview"] = truncate_string(strip_tags($line["content_preview"]), 100, '...');
|
$line["content_preview"] = truncate_string(strip_tags($line["content_preview"]), 100, '...');
|
||||||
|
|
||||||
foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
|
foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
|
||||||
$line = $p->hook_query_headlines($line, 100);
|
$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 = array();
|
||||||
|
|
||||||
$article['id'] = $line['link'];
|
$article['id'] = $line['link'];
|
||||||
|
|
|
@ -49,6 +49,7 @@ class PluginHost {
|
||||||
const HOOK_HEADLINES_BEFORE = 28;
|
const HOOK_HEADLINES_BEFORE = 28;
|
||||||
const HOOK_RENDER_ENCLOSURE = 29;
|
const HOOK_RENDER_ENCLOSURE = 29;
|
||||||
const HOOK_ARTICLE_FILTER_ACTION = 30;
|
const HOOK_ARTICLE_FILTER_ACTION = 30;
|
||||||
|
const HOOK_ARTICLE_EXPORT_FEED = 31;
|
||||||
|
|
||||||
const KIND_ALL = 1;
|
const KIND_ALL = 1;
|
||||||
const KIND_SYSTEM = 2;
|
const KIND_SYSTEM = 2;
|
||||||
|
|
Loading…
Reference in New Issue