summaryrefslogtreecommitdiff
path: root/plugins/example_feed/example_feed.php
blob: af14d3ff3fc9936b6b5a9d87a24877979c24b38c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?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 about() {
		return array(1.0,
			"Example feed plugin",
			"fox",
			true);
	}

	function init($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());
	}
}
?>