summaryrefslogtreecommitdiff
path: root/plugins/example_feed/init.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-12-30 13:36:40 +0400
committerAndrew Dolgov <[email protected]>2012-12-30 13:36:40 +0400
commite938b1de117cfde17a5773fe0c6fc92185c873fe (patch)
tree4afe7134ba505ba9209833cf193603beb32706cb /plugins/example_feed/init.php
parent0e44c2a0d422617a59e3926cf3ae22872aac041a (diff)
rename plugin main class files
Diffstat (limited to 'plugins/example_feed/init.php')
-rw-r--r--plugins/example_feed/init.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/plugins/example_feed/init.php b/plugins/example_feed/init.php
new file mode 100644
index 000000000..af14d3ff3
--- /dev/null
+++ b/plugins/example_feed/init.php
@@ -0,0 +1,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());
+ }
+}
+?>