From 6322ac79a020ab584d412d782d62b2ee77d7c6cf Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 17 Apr 2013 16:23:15 +0400 Subject: remove $link --- plugins/example_routing/init.php | 2 -- 1 file changed, 2 deletions(-) (limited to 'plugins/example_routing') diff --git a/plugins/example_routing/init.php b/plugins/example_routing/init.php index 31c5b6f28..0ae446e33 100644 --- a/plugins/example_routing/init.php +++ b/plugins/example_routing/init.php @@ -12,7 +12,6 @@ class Example_Routing extends Plugin implements IHandler { // Any system method may be masked by plugins. You can mask // entire handler by supplying "*" instead of a method name. - private $link; private $host; function about() { @@ -23,7 +22,6 @@ class Example_Routing extends Plugin implements IHandler { } function init($host) { - $this->link = $host->get_link(); $this->host = $host; $host->add_handler("test", "example", $this); -- cgit v1.2.3 From 106a3de91c7c8c6c275323152de414253f01127a Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 19 Apr 2013 17:31:56 +0400 Subject: plugins: bump API version --- plugins/example_routing/init.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'plugins/example_routing') diff --git a/plugins/example_routing/init.php b/plugins/example_routing/init.php index 0ae446e33..a7b19d787 100644 --- a/plugins/example_routing/init.php +++ b/plugins/example_routing/init.php @@ -48,5 +48,9 @@ class Example_Routing extends Plugin implements IHandler { return true; } + function api_version() { + return 2; + } + } ?> -- cgit v1.2.3 From 2c967d60237c5890549b9c9fa680ee7adec10e6a Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 7 May 2013 10:09:38 +0400 Subject: move example plugins to -contrib --- plugins/example_routing/init.php | 56 ---------------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 plugins/example_routing/init.php (limited to 'plugins/example_routing') diff --git a/plugins/example_routing/init.php b/plugins/example_routing/init.php deleted file mode 100644 index a7b19d787..000000000 --- a/plugins/example_routing/init.php +++ /dev/null @@ -1,56 +0,0 @@ -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; - } - -} -?> -- cgit v1.2.3