2011-12-12 19:32:29 +00:00
|
|
|
<?php
|
|
|
|
class Handler {
|
|
|
|
protected $link;
|
|
|
|
protected $args;
|
|
|
|
|
|
|
|
function __construct($link, $args) {
|
|
|
|
$this->link = $link;
|
|
|
|
$this->args = $args;
|
|
|
|
}
|
|
|
|
|
2011-12-26 08:02:52 +00:00
|
|
|
function csrf_ignore($method) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-07-05 18:43:44 +00:00
|
|
|
function before($method) {
|
2011-12-12 19:32:29 +00:00
|
|
|
return true;
|
|
|
|
}
|
2011-12-12 20:20:53 +00:00
|
|
|
|
|
|
|
function after() {
|
|
|
|
return true;
|
|
|
|
}
|
2012-09-10 15:01:06 +00:00
|
|
|
|
2011-12-12 19:32:29 +00:00
|
|
|
}
|
|
|
|
?>
|