Пример #1
0
function setdefault($var, $default) {
	foreach ($default as $k => $v) {
		if(!isset($var[$k])) {
			$var[$k] = $default[$k];
		} elseif(is_array($v)) {
			$var[$k] = setdefault($var[$k], $default[$k]);
		}
	}
	return $var;
}
Пример #2
0
function content_setdefault($contentid)
{
    $objResponse = new xajaxResponse();
    setdefault($contentid);
    $objResponse->assign("contentlist", "innerHTML", display_content_list());
    $objResponse->script("\$('#tr_{$contentid}').effect('highlight', [], 3000);");
    return $objResponse;
}
Пример #3
0
insert($t, $c = cell());
insert($c, text(my_("Min. TTL")));
insert($t, $c = cell());
insert($c, textbr(my_("Last modified")));
insert($c, text(my_("Last exported")));
insert($t, $c = cell());
insert($c, text(my_("Changed by")));
insert($t, $ck = cell());
insert($ck, text(my_("Action")));
// capture data for the export view functionality
$export = new exportForm();
$export->addRow(array("domain", "primary_DNS", "secondary_DNS", "serial_date", "ttl", "refresh", "retry", "expire", "minimum_ttl", "last_modified", "last_exported", "changed_by"));
$export->saveRow();
$cnt = 0;
while ($row = $result->FetchRow()) {
    setdefault("cell", array("class" => color_flip_flop()));
    $export->addRow(NULL);
    insert($t, $c = cell());
    // have zone records been modified
    if ($row["error_message"] == "E") {
        insert($c, textb($row["domain"]));
        insert($c, block(" ‡"));
    } else {
        insert($c, text($row["domain"]));
    }
    if ($row["slaveonly"] == "Y") {
        insert($c, span(my_("Slave zone"), array("class" => "textSmall")));
        $export->addCell($row["domain"] . my_(" (Slave zone)"));
    } else {
        $export->addCell($row["domain"]);
    }
Пример #4
0
function content_setdefault($contentid)
{
    $objResponse = new xajaxResponse();
    setdefault($contentid);
    $objResponse->assign("contentlist", "innerHTML", display_content_list());
    $objResponse->script("new Effect.Highlight('tr_{$contentid}', { duration: 2.0 });");
    return $objResponse;
}
Пример #5
0
<?php

/*
 * $Source: /home/xubuntu/berlios_backup/github/tmp-cvs/otmp/Repository/Release1/docs/userdocuments.php,v $
 * $Revision: 1.4 $
 * $Id: userdocuments.php,v 1.4 2001/12/10 22:08:46 darkpact Exp $
 *
 * To Do:
 * - Localisation
 */
/******************************************************************************
 * MAIN
 *****************************************************************************/
include "../application.php";
$DOC_TITLE = "All User Documents";
setdefault($usrid, "1");
include "{$CFG->templatedir}/header.php";
include "templates/userdocuments.inc";
include "{$CFG->templatedir}/footer.php";
/******************************************************************************
 * FUNCTIONS
 *****************************************************************************/
function show_docs($usrid)
{
    /* ... */
    return sql_getUserDocuments($usrid);
}
function show_name($id)
{
    /* ... */
    return sql_getUserFromText($id);
Пример #6
0
function searchOverlap($ds, &$w, $cust1, $cust2)
{
    global $block;
    // dont trust variables
    $cust1 = floor($cust1);
    $cust2 = floor($cust2);
    $custdescrip1 = $ds->GetCustomerDescrip($cust1);
    $custdescrip2 = $ds->GetCustomerDescrip($cust2);
    // this query is not quick as indexes cannot be used!!!
    // must have first baseaddr called baseaddr else block pager
    // will not work - may break databases other than mysql
    $result =& $ds->ds->Execute("SELECT t1.baseaddr AS baseaddr,\n                           t1.baseindex AS baseindex1,\n                           t1.subnetsize AS subnetsize1,\n                           t1.descrip AS descrip1,\n                           t2.baseaddr AS baseaddr2,\n                           t2.baseindex AS baseindex2,\n                           t2.subnetsize AS subnetsize2,\n                           t2.descrip AS descrip2\n                        FROM base t1, base t2\n                        WHERE ((t1.baseaddr BETWEEN t2.baseaddr AND\n                                t2.baseaddr+t2.subnetsize-1) OR\n                               (t1.baseaddr+t1.subnetsize-1\n                                BETWEEN t2.baseaddr AND\n                                        t2.baseaddr+t2.subnetsize-1) OR\n                               (t1.baseaddr < t2.baseaddr AND\n                                t1.baseaddr+t1.subnetsize >\n                                t2.baseaddr+t2.subnetsize)) AND\n                               t1.customer={$cust1} AND\n                                t2.customer={$cust2}\n                        ORDER BY t1.baseaddr");
    $totcnt = 0;
    $vars = "";
    // fastforward till first record if not first block of data
    while ($block and $totcnt < $block * MAXTABLESIZE and $row = $result->FetchRow()) {
        $vars = DisplayBlock($w, $row, $totcnt, "&cust1[]=" . $cust1 . "&cust2[]=" . $cust2);
        $totcnt++;
    }
    insert($w, block("<p>"));
    $cnt = 0;
    while ($row = $result->FetchRow()) {
        // draw heading only if there are records to display
        if ($cnt == 0) {
            // create a table
            insert($w, $t = table(array("cols" => "8", "class" => "outputtable")));
            // draw heading
            setdefault("cell", array("class" => "heading"));
            insert($t, $c = cell(array("colspan" => "4")));
            insert($c, block("<center>"));
            insert($c, text($custdescrip1));
            insert($c, block("</center>"));
            insert($t, $c = cell(array("colspan" => "4")));
            insert($c, block("<center>"));
            insert($c, text($custdescrip2));
            insert($c, block("</center>"));
            insert($t, $c = cell());
            if (!empty($vars)) {
                insert($c, anchor($vars, "<<"));
            }
            insert($c, text(my_("Base address")));
            insert($t, $c = cell());
            insert($c, text(my_("Subnet size")));
            insert($t, $c = cell());
            insert($c, text(my_("Subnet mask")));
            insert($t, $c = cell());
            insert($c, text(my_("Description")));
            insert($t, $c = cell());
            insert($c, text(my_("Base address")));
            insert($t, $c = cell());
            insert($c, text(my_("Subnet size")));
            insert($t, $c = cell());
            insert($c, text(my_("Subnet mask")));
            insert($t, $ck = cell());
            insert($ck, text(my_("Description")));
            setdefault("cell", array("class" => color_flip_flop()));
        }
        // customer 1
        if ($row["subnetsize1"] == 1) {
            insert($t, $c = cell());
            insert($c, text(inet_ntoa($row["baseaddr"])));
        } else {
            insert($t, $c = cell());
            insert($c, anchor("displaysubnet.php?baseindex=" . $row["baseindex1"], inet_ntoa($row["baseaddr"])));
        }
        if ($row["subnetsize1"] == 1) {
            insert($t, $c = cell());
            insert($c, text("Host"));
        } else {
            insert($t, $c = cell());
            insert($c, text($row["subnetsize1"]));
        }
        insert($t, $c = cell());
        insert($c, text(inet_ntoa(inet_aton(ALLNETS) + 1 - $row["subnetsize1"]) . "/" . inet_bits($row["subnetsize1"])));
        insert($t, $c = cell());
        insert($c, text($row["descrip1"]));
        // customer 2
        if ($row["subnetsize2"] == 1) {
            insert($t, $c = cell());
            insert($c, text(inet_ntoa($row["baseaddr2"])));
        } else {
            insert($t, $c = cell());
            insert($c, anchor("displaysubnet.php?baseindex=" . $row["baseindex2"], inet_ntoa($row["baseaddr2"])));
        }
        if ($row["subnetsize2"] == 1) {
            insert($t, $c = cell());
            insert($c, text(my_("Host")));
        } else {
            insert($t, $c = cell());
            insert($c, text($row["subnetsize2"]));
        }
        insert($t, $c = cell());
        insert($c, text(inet_ntoa(inet_aton(ALLNETS) + 1 - $row["subnetsize2"]) . "/" . inet_bits($row["subnetsize2"])));
        insert($t, $c = cell());
        insert($c, text($row["descrip2"]));
        if ($totcnt % MAXTABLESIZE == MAXTABLESIZE - 1) {
            break;
        }
        $cnt++;
        $totcnt++;
    }
    insert($w, block("<p>"));
    if ($cnt) {
        $vars = "";
        $printed = 0;
        while ($row = $result->FetchRow()) {
            $totcnt++;
            $vars = DisplayBlock($w, $row, $totcnt, "&cust1[]=" . $cust1 . "&cust2[]=" . $cust2);
            if (!empty($vars) and !$printed) {
                insert($ck, anchor($vars, ">>"));
                $printed = 1;
            }
        }
    }
}
Пример #7
0
/******************************************************************************
 * MAIN
 *****************************************************************************/
include "../application.php";
/* form has been submitted */
if (isset($HTTP_POST_VARS)) {
    $frm = $HTTP_POST_VARS;
    //mydebug($frm);
    if (isset($frm['download'])) {
        /* if Packer not choosen, then check if user has an default packer */
        if (nvl($frm['packerID'], 0) == 0) {
            $packerID = isset($session['usepackerID']) ? $session['usepackerID'] : 0;
        } else {
            /* Packer choosen, so set default-packer for user if not set */
            $packerID = $frm['packerID'];
            setdefault($session['usepackerID'], $packerID);
        }
        // get the downloadURL for the File
        $goto = get_downloadURL(nvl($frm['textID']), $packerID);
        //$goto = empty($session["wantsurl"]) ? "$CFG->wwwroot/main.php" : $session["wantsurl"];
        header("Location: {$goto}");
        die;
    }
}
$DOC_TITLE = "Download";
include "{$CFG->templatedir}/header.php";
include "templates/download.inc";
include "{$CFG->templatedir}/footer.php";
/******************************************************************************
 * FUNCTIONS
 *****************************************************************************/
Пример #8
0
     db_tables();
     break;
 case 'show_stats':
     show_stats();
     break;
 case 'generate_xml':
     generate_xml();
     break;
 case 'generate_csv':
     generate_csv();
     break;
 case 'paypal_info':
     paypal_info();
     break;
 case 'default':
     setdefault();
     break;
 case 'product_option':
     product_option();
     break;
 case 'preview':
     preview_formmaker();
     break;
 case 'edit_css':
     edit_css();
     break;
 case 'themes':
     show_themes();
     break;
 case 'add_themes':
     add_themes();
Пример #9
0
/*
 * $Source: /home/xubuntu/berlios_backup/github/tmp-cvs/otmp/Repository/Release1/docs/tasklist.php,v $
 * $Revision: 1.2 $
 * $Id: tasklist.php,v 1.2 2001/12/18 23:29:22 hifix Exp $
 *
 * To Do:
 * - Localisation
 */
/******************************************************************************
 * MAIN
 *****************************************************************************/
include "../application.php";
$session['wantsurl'] = me();
// Rücksprung (ggf)
$DOC_TITLE = "Tasks Info";
setdefault($list, "open");
include "{$CFG->templatedir}/header.php";
include "templates/tasklist.inc";
include "{$CFG->templatedir}/footer.php";
/******************************************************************************
 * FUNCTIONS
 *****************************************************************************/
function show_tasks($status)
{
    /* ... */
    return sql_getAuftrag($status);
}
function show_name($id)
{
    /* ... */
    return sql_getUserFromText($id);
Пример #10
0
    }
    if (isset($frm['addTask'])) {
        $errormsg = validate_form($frm, $errors);
        if (empty($errormsg)) {
            $status = makeTask($frm);
            $DOC_TITLE = "Task Successful";
            include "{$CFG->templatedir}/header.php";
            include "templates/task_success.inc";
            include "{$CFG->templatedir}/footer.php";
            die;
        } else {
            $session['notice'] = $errormsg;
        }
    }
}
setdefault($id, nvl($frm['textID']));
$DOC_TITLE = "Task management";
include "{$CFG->templatedir}/header.php";
include "templates/maketask_form.inc";
include "{$CFG->templatedir}/footer.php";
/******************************************************************************
 * FUNCTIONS
 *****************************************************************************/
function validate_form(&$frm, &$errors)
{
    /* validate the upload form, and return the error messages in a string.  if
     * the string is empty, then there are no errors */
    $errors = new Object();
    $msg = "";
    if (empty($frm["textID"])) {
        $errors->lang = true;
Пример #11
0
     insert($t, $c = cell());
     insert($c, text(my_("Base address")));
     insert($t, $c = cell());
     insert($c, text(my_("Subnet description")));
     insert($t, $c = cell());
     insert($c, text(my_("Customer")));
     do {
         setdefault("cell", array("class" => color_flip_flop()));
         insert($t, $c = cell());
         insert($c, text(inet_ntoa($row["baseaddr"])));
         insert($t, $c = cell());
         insert($c, text($row["descrip"]));
         insert($t, $c = cell());
         insert($c, text($row["custdescrip"]));
     } while ($row = $result->FetchRow());
     setdefault("cell", "");
     insert($w, block("<p>"));
 }
 // check if user belongs to customer admin group
 $result = $ds->GetCustomerGrp($cust);
 // can only be one row - does not matter if nothing is
 // found as array search will return false
 $row = $result->FetchRow();
 if (!in_array($row["admingrp"], $grps)) {
     myError($w, $p, my_("You may not create a subnet for this customer as you are not a member of the customers admin group"));
 }
 $ds->DbfTransactionStart();
 // use the first group user belongs to create subnet
 if ($id = $ds->CreateSubnet($base, $size, $descrip, $cust, $dhcp, $admingrp)) {
     $ds->AuditLog(array("event" => 170, "action" => "create subnet", "descrip" => $descrip, "user" => getAuthUsername(), "baseaddr" => inet_ntoa($base), "size" => $size, "cust" => $cust));
     insert($w, text(sprintf(my_("Subnet %s created"), inet_ntoa($base))));
Пример #12
0
/*
 * $Source: /home/xubuntu/berlios_backup/github/tmp-cvs/otmp/Repository/Release1/docs/document.php,v $
 * $Revision: 1.8 $
 * $Id: document.php,v 1.8 2001/12/18 23:29:22 hifix Exp $
 *
 * To Do:
 * - Localisation
 */
/******************************************************************************
 * MAIN
 *****************************************************************************/
include "../application.php";
$session['wantsurl'] = me();
// Rücksprung (ggf)
$DOC_TITLE = "Document List";
setdefault($otid, "1");
include "{$CFG->templatedir}/header.php";
// testing
$id = $otid;
echo "\n<!-- ID: {$id} -->\n";
include "templates/document_details.inc";
//include("templates/document_langdetails.inc");
//echo "<hr>";
include "templates/document.inc";
include "{$CFG->templatedir}/footer.php";
/******************************************************************************
 * FUNCTIONS
 *****************************************************************************/
function show_docs($otid)
{
    /* ... */