summaryrefslogtreecommitdiff
path: root/classes/ihandler.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-12-23 23:05:51 +0400
committerAndrew Dolgov <[email protected]>2012-12-23 23:05:51 +0400
commit8dcb2b47628346226b18940b5cde7849f7a24687 (patch)
treeca3ee70e34095455614f4c2c7f9d69ce9f1ed27c /classes/ihandler.php
parent5cedb389d24861a94c1183d1562900dbe59ee3fb (diff)
implement plugin routing masks, add example plugin
Diffstat (limited to 'classes/ihandler.php')
-rw-r--r--classes/ihandler.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/classes/ihandler.php b/classes/ihandler.php
new file mode 100644
index 000000000..e3c8a535f
--- /dev/null
+++ b/classes/ihandler.php
@@ -0,0 +1,7 @@
+<?php
+interface IHandler {
+ function csrf_ignore($method);
+ function before($method);
+ function after();
+}
+?>