summaryrefslogtreecommitdiff
path: root/plugins/example_routing/init.php
blob: a7b19d78744759069e9b1ebe374530529a844f9b (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
class Example_Routing extends Plugin implements IHandler {

	// Demonstrates adding a custom handler and method:
	// backend.php?op=test&method=example
	// and masking a system builtin public method:
	// public.php?op=getUnread

	// Plugin class must implelement IHandler interface and has
	// a public method of same name as being registered.
	//
	// Any system method may be masked by plugins. You can mask
	// entire handler by supplying "*" instead of a method name.

	private $host;

	function about() {
		return array(1.0,
			"Example routing plugin",
			"fox",
			true);
	}

	function init($host) {
		$this->host = $host;

		$host->add_handler("test", "example", $this);
		$host->add_handler("public", "getunread", $this);
	}

	function getunread() {
		print rand(0,100); # yeah right
	}

	function example() {
		print "example method called";
	}

	function csrf_ignore($method) {
		return true;
	}

	function before($method) {
		return true;
	}

	function after() {
		return true;
	}

	function api_version() {
		return 2;
	}

}
?>