ttrss/classes/handler.php

25 lines
306 B
PHP
Raw Normal View History

2011-12-12 19:32:29 +00:00
<?php
class Handler implements IHandler {
2013-04-17 12:23:15 +00:00
protected $dbh;
2011-12-12 19:32:29 +00:00
protected $args;
2013-04-17 12:23:15 +00:00
function __construct($dbh, $args) {
$this->dbh = $dbh;
2011-12-12 19:32:29 +00:00
$this->args = $args;
}
2011-12-26 08:02:52 +00:00
function csrf_ignore($method) {
return true;
}
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;
}
2011-12-12 19:32:29 +00:00
}
?>