1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-11 07:39:16 +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

@@ -0,0 +1,22 @@
<?php
class Example_Feed extends Plugin {
// Demonstrates how to query data from the parsed feed object (SimplePie)
// don't enable unless debugging feed through f D hotkey or manually.
private $link;
private $host;
function __construct($host) {
$this->link = $host->get_link();
$this->host = $host;
$host->add_hook($host::HOOK_FEED_PARSED, $this);
}
function hook_feed_parsed($feed) {
_debug("I'm a little feed short and stout, here's my title: " . $feed->get_title());
_debug("... here's my link element: " . $feed->get_link());
}
}
?>