]> git.wh0rd.org - tt-rss.git/blame - plugins/example_routing/example_routing.php
experimental support for per-user plugins (bump schema)
[tt-rss.git] / plugins / example_routing / example_routing.php
CommitLineData
8dcb2b47
AD
1<?php
2class 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 //
6cbe53c9
AD
12 // Any system method may be masked by plugins. You can mask
13 // entire handler by supplying "*" instead of a method name.
8dcb2b47
AD
14
15 private $link;
16 private $host;
17
7a866114
AD
18 function _about() {
19 return array(1.0,
20 "Example routing plugin",
de612e7a
AD
21 "fox",
22 true);
7a866114
AD
23 }
24
8dcb2b47
AD
25 function __construct($host) {
26 $this->link = $host->get_link();
27 $this->host = $host;
28
29 $host->add_handler("test", "example", $this);
30 $host->add_handler("public", "getunread", $this);
31 }
32
33 function getunread() {
34 print rand(0,100); # yeah right
35 }
36
37 function example() {
38 print "example method called";
39 }
40
41 function csrf_ignore($method) {
42 return true;
43 }
44
45 function before($method) {
46 return true;
47 }
48
49 function after() {
50 return true;
51 }
52
53}
54?>