summaryrefslogtreecommitdiff
path: root/plugins/example_article
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-05-07 10:09:38 +0400
committerAndrew Dolgov <[email protected]>2013-05-07 10:09:38 +0400
commit2c967d60237c5890549b9c9fa680ee7adec10e6a (patch)
treee59a6791d97715b17bd08129f309227178999655 /plugins/example_article
parentd88922a5d31062196da6e69ab109079cda8867b2 (diff)
move example plugins to -contrib
Diffstat (limited to 'plugins/example_article')
-rw-r--r--plugins/example_article/init.js0
-rw-r--r--plugins/example_article/init.php34
2 files changed, 0 insertions, 34 deletions
diff --git a/plugins/example_article/init.js b/plugins/example_article/init.js
deleted file mode 100644
index e69de29bb..000000000
--- a/plugins/example_article/init.js
+++ /dev/null
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 @@
-<?php
-class Example_Article extends Plugin {
-
- private $host;
-
- function about() {
- return array(1.0,
- "Example plugin for HOOK_RENDER_ARTICLE",
- "fox",
- true);
- }
-
- function init($host) {
- $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;
- }
-
- function api_version() {
- return 2;
- }
-
-}
-?>