<?php

include "admin-lib/AdminGetStatic.php";
$gs = new AdminGetStatic();
if (isset($_REQUEST['method'])) {
    $method = $_REQUEST['method'];
    switch ($method) {
        case "logout":
            $gs->logOut();
            break;
        default:
            $gs->logOut();
            break;
    }
}