Пример #1
0
function roudncube_save()
{
    $ou = $_GET["ou"];
    $roundcube = new roundcube($ou);
    $roundcube->roundcubeWebsites[$ou]["servername"] = $_GET["roundcubeservername"];
    $roundcube->Save();
    $sock = new sockets();
    $sock->getfile('ApacheGroupWareRestart');
}
Пример #2
0
function main_save_roundcube_settings()
{
    $round = new roundcube();
    while (list($num, $line) = each($_GET)) {
        $round->roundCubeArray[$num] = $line;
    }
    $round->Save();
}
Пример #3
0
function APP_ROUNDCUBE()
{
    $round = new roundcube();
    $round->https_port = $_GET["APP_ROUNDCUBE"];
    $round->Save();
}