diff --git a/plugins/example_article/init.js b/plugins/example_article/init.js new file mode 100644 index 000000000..e69de29bb 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 @@ +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; + } +} +?>