]> git.wh0rd.org - tt-rss.git/blob - classes/handler.php
implement tiny-OOP routing
[tt-rss.git] / classes / handler.php
1 <?php
2 class Handler {
3 protected $link;
4 protected $args;
5
6 function __construct($link, $args) {
7 $this->link = $link;
8 $this->args = $args;
9 }
10
11 function before() {
12 return true;
13 }
14
15 function after() {
16 return true;
17 }
18 }
19 ?>