summaryrefslogtreecommitdiff
path: root/plugins/example_article/init.php
blob: 000be7c4c79a951511320fd770dd65f1d77e2d4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?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;
	}
}
?>