handler.php 305 B

123456789101112131415161718192021222324
  1. <?php
  2. class Handler implements IHandler {
  3. protected $dbh;
  4. protected $args;
  5. function __construct($args) {
  6. $this->dbh = Db::get();
  7. $this->args = $args;
  8. }
  9. function csrf_ignore($method) {
  10. return true;
  11. }
  12. function before($method) {
  13. return true;
  14. }
  15. function after() {
  16. return true;
  17. }
  18. }
  19. ?>