]> git.wh0rd.org - tt-rss.git/blame - classes/handler.php
pngcrush.sh
[tt-rss.git] / classes / handler.php
CommitLineData
d5112468 1<?php
8dcb2b47 2class Handler implements IHandler {
c39ee272 3 protected $pdo;
d5112468
AD
4 protected $args;
5
1f294435 6 function __construct($args) {
c39ee272 7 $this->pdo = Db::pdo();
d5112468
AD
8 $this->args = $args;
9 }
10
8484ce22
AD
11 function csrf_ignore($method) {
12 return true;
13 }
14
17f9d200 15 function before($method) {
d5112468
AD
16 return true;
17 }
3f363052
AD
18
19 function after() {
20 return true;
21 }
97acbaf1 22
ea79a0e0 23}