2012-12-23 20:05:51 +01:00
|
|
|
<?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.
|
|
|
|
//
|
2012-12-23 20:36:07 +01:00
|
|
|
// Any system method may be masked by plugins. You can mask
|
|
|
|
// entire handler by supplying "*" instead of a method name.
|
2012-12-23 20:05:51 +01:00
|
|
|
|
|
|
|
private $link;
|
|
|
|
private $host;
|
|
|
|
|
2012-12-25 07:02:08 +01:00
|
|
|
function about() {
|
2012-12-24 12:39:42 +01:00
|
|
|
return array(1.0,
|
|
|
|
"Example routing plugin",
|
2012-12-24 21:45:10 +01:00
|
|
|
"fox",
|
|
|
|
true);
|
2012-12-24 12:39:42 +01:00
|
|
|
}
|
|
|
|
|
2012-12-25 07:02:08 +01:00
|
|
|
function init($host) {
|
2012-12-23 20:05:51 +01:00
|
|
|
$this->link = $host->get_link();
|
|
|
|
$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;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
?>
|