1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-07-03 13:00:51 +02:00
ttrss/plugins/example_feed/init.php

33 lines
636 B
PHP
Raw Normal View History

<?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 $host;
function about() {
return array(1.0,
"Example feed plugin",
"fox",
true);
}
function init($host) {
$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());
}
2013-04-19 15:31:56 +02:00
function api_version() {
return 2;
}
}
?>