1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-30 12:30:52 +02:00
ttrss/classes/handler.php
2011-12-26 12:02:52 +04:00

24 lines
282 B
PHP

<?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;
}
}
?>