summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-02-23 16:02:04 +0400
committerAndrew Dolgov <[email protected]>2013-02-23 16:02:13 +0400
commit32c399b1bfdb1446a0ee9a78ad746f078b3d5605 (patch)
tree549a935dfeff060fc04d339d3c5cc8205b8b6f68
parent84d952f141584c5788aba4d0119a66c8a043721c (diff)
add example article hook plugin
-rw-r--r--plugins/example_article/init.js0
-rw-r--r--plugins/example_article/init.php31
2 files changed, 31 insertions, 0 deletions
diff --git a/plugins/example_article/init.js b/plugins/example_article/init.js
new file mode 100644
index 000000000..e69de29bb
--- /dev/null
+++ b/plugins/example_article/init.js
diff --git a/plugins/example_article/init.php b/plugins/example_article/init.php
new file mode 100644
index 000000000..05f95a40a
--- /dev/null
+++ b/plugins/example_article/init.php
@@ -0,0 +1,31 @@
+<?php
+class Example_Article extends Plugin {
+
+ private $link;
+ private $host;
+
+ function about() {
+ return array(1.0,
+ "Example plugin for HOOK_RENDER_ARTICLE",
+ "fox",
+ true);
+ }
+
+ function init($host) {
+ $this->link = $host->get_link();
+ $this->host = $host;
+
+ $host->add_hook($host::HOOK_RENDER_ARTICLE, $this);
+ }
+
+ function get_prefs_js() {
+ return file_get_contents(dirname(__FILE__) . "/init.js");
+ }
+
+ function hook_render_article($article) {
+ $article["content"] = "Content changed: " . $article["content"];
+
+ return $article;
+ }
+}
+?>