summaryrefslogtreecommitdiffstats
path: root/app/controller/deauth.control.php
blob: d223e9ef6a5b17e9d8211232f32b97064eca2dcd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?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();
    }
}

?>