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