From 2c967d60237c5890549b9c9fa680ee7adec10e6a Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 7 May 2013 10:09:38 +0400 Subject: move example plugins to -contrib --- plugins/example_article/init.js | 0 plugins/example_article/init.php | 34 ---------------------------------- 2 files changed, 34 deletions(-) delete mode 100644 plugins/example_article/init.js delete mode 100644 plugins/example_article/init.php (limited to 'plugins/example_article') diff --git a/plugins/example_article/init.js b/plugins/example_article/init.js deleted file mode 100644 index e69de29bb..000000000 diff --git a/plugins/example_article/init.php b/plugins/example_article/init.php deleted file mode 100644 index 69902cbf1..000000000 --- a/plugins/example_article/init.php +++ /dev/null @@ -1,34 +0,0 @@ -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; - } - - function api_version() { - return 2; - } - -} -?> -- cgit v1.2.3