diff options
-rw-r--r-- | app/model/deauth.mod.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/model/deauth.mod.php b/app/model/deauth.mod.php new file mode 100644 index 0000000..d3eb7c1 --- /dev/null +++ b/app/model/deauth.mod.php @@ -0,0 +1,17 @@ +<?php + +require_once "class/model.class.php"; + +class DeauthModel extends Model +{ + /* + * Default action + */ + function deflt() + { + $this->setCurrentUser(); + $this->redirectTo($this->ar() . "/"); + } +} + +?> |