<?php require_once "class/controller.class.php"; require_once "model/deauth.mod.php"; /* * Deauth is used to terminate the current session (logout) */ class Deauth extends Controller { /* * Controller implementation */ function handle($argv) { $mod = new DeauthModel(); $this->action_default($mod); } function action_default($mod) { $mod->deflt(); } } ?>