]> git.wh0rd.org Git - tt-rss.git/blob - classes/handler.php
mailto plugin: only mail unique articles
[tt-rss.git] / classes / handler.php
1 <?php
2 class Handler implements IHandler {
3         protected $dbh;
4         protected $args;
5
6         function __construct($args) {
7                 $this->dbh = Db::get();
8                 $this->args = $args;
9         }
10
11         function csrf_ignore($method) {
12                 return true;
13         }
14
15         function before($method) {
16                 return true;
17         }
18
19         function after() {
20                 return true;
21         }
22
23 }
24 ?>