1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-29 12:20:51 +02:00
ttrss/classes/handler.php

25 lines
305 B
PHP
Raw Normal View History

2011-12-12 20:32:29 +01:00
<?php
class Handler implements IHandler {
2013-04-17 14:23:15 +02:00
protected $dbh;
2011-12-12 20:32:29 +01:00
protected $args;
function __construct($args) {
$this->dbh = Db::get();
2011-12-12 20:32:29 +01:00
$this->args = $args;
}
2011-12-26 09:02:52 +01:00
function csrf_ignore($method) {
return true;
}
function before($method) {
2011-12-12 20:32:29 +01:00
return true;
}
2011-12-12 21:20:53 +01:00
function after() {
return true;
}
2011-12-12 20:32:29 +01:00
}
?>