]> git.wh0rd.org - tt-rss.git/blob - plugins/example_routing/init.php
remove $link
[tt-rss.git] / plugins / example_routing / init.php
1 <?php
2 class Example_Routing extends Plugin implements IHandler {
3
4 // Demonstrates adding a custom handler and method:
5 // backend.php?op=test&method=example
6 // and masking a system builtin public method:
7 // public.php?op=getUnread
8
9 // Plugin class must implelement IHandler interface and has
10 // a public method of same name as being registered.
11 //
12 // Any system method may be masked by plugins. You can mask
13 // entire handler by supplying "*" instead of a method name.
14
15 private $host;
16
17 function about() {
18 return array(1.0,
19 "Example routing plugin",
20 "fox",
21 true);
22 }
23
24 function init($host) {
25 $this->host = $host;
26
27 $host->add_handler("test", "example", $this);
28 $host->add_handler("public", "getunread", $this);
29 }
30
31 function getunread() {
32 print rand(0,100); # yeah right
33 }
34
35 function example() {
36 print "example method called";
37 }
38
39 function csrf_ignore($method) {
40 return true;
41 }
42
43 function before($method) {
44 return true;
45 }
46
47 function after() {
48 return true;
49 }
50
51 }
52 ?>