示例#1
0
<?php

/**
 *  ulogd visualizer
 *
 *    Upload data
 *
 *  @author Koen Van Impe <*****@*****.**>
 *  @package  ulogdviz
 * 
 */
set_include_path(implode(PATH_SEPARATOR, array(realpath(dirname(__FILE__) . '/../library'), get_include_path())));
require_once "../config/ulogd.php";
$get = $_GET;
if (is_array($get)) {
    $type = (string) $get["type"];
    if ($type == "shortcut") {
        $ulogd_shortcut = new ulogd_shortcut();
        $ulogd_shortcut->save($get);
    }
}