summaryrefslogtreecommitdiff
path: root/plugins/example_feed/init.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/example_feed/init.php')
-rw-r--r--plugins/example_feed/init.php32
1 files changed, 0 insertions, 32 deletions
diff --git a/plugins/example_feed/init.php b/plugins/example_feed/init.php
deleted file mode 100644
index 1d653a9f6..000000000
--- a/plugins/example_feed/init.php
+++ /dev/null
@@ -1,32 +0,0 @@
-<?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());
- }
-
- function api_version() {
- return 2;
- }
-
-}
-?>