info::GET PHP Method

GET() public method

public GET ( )
    function GET()
    {
        if (isset($_SERVER['HTTP_X_REQUESTED_WITH'])) {
            data::set('ajax', array('GET'));
        }
        data::set('params', $_GET);
        include __DIR__ . '/view/info.php';
    }
info