handler.php 301 B

1234567891011121314151617181920212223
  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. }