summaryrefslogtreecommitdiff
path: root/classes/handler.php
blob: 404b8306b8e269d3c544aecd6f361b3e184d376f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
class Handler {
	protected $link;
	protected $args;

	function __construct($link, $args) {
		$this->link = $link;
		$this->args = $args;
	}

	function csrf_ignore($method) {
		return true;
	}

	function before() {
		return true;
	}

	function after() {
		return true;
	}
}
?>