implement plugin routing masks, add example plugin

This commit is contained in:
Andrew Dolgov
2012-12-23 23:05:51 +04:00
parent 5cedb389d2
commit 8dcb2b4762
7 changed files with 108 additions and 7 deletions
+7
View File
@@ -0,0 +1,7 @@
<?php
interface IHandler {
function csrf_ignore($method);
function before($method);
function after();
}
?>