2017-05-22 11:24:21 +02:00
|
|
|
<?php
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// NagiosQL
|
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2017-10-20 15:00:08 +02:00
|
|
|
// (c) 2005-2017 by Martin Willisegger
|
2017-05-22 11:24:21 +02:00
|
|
|
//
|
|
|
|
// Project : NagiosQL
|
|
|
|
// Component : Variable definition list
|
|
|
|
// Website : http://www.nagiosql.org
|
2017-10-20 15:00:08 +02:00
|
|
|
// Date : $LastChangedDate: 2017-06-22 09:29:35 +0200 (Thu, 22 Jun 2017) $
|
2017-05-22 11:24:21 +02:00
|
|
|
// Author : $LastChangedBy: martin $
|
2017-10-20 15:00:08 +02:00
|
|
|
// Version : 3.3.0
|
|
|
|
// Revision : $LastChangedRevision: 2 $
|
2017-05-22 11:24:21 +02:00
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Define common variables
|
|
|
|
// =======================
|
|
|
|
$preAccess = 1;
|
|
|
|
$preNoMain = 1;
|
|
|
|
//
|
|
|
|
// Include preprocessing file
|
|
|
|
// ==========================
|
|
|
|
require("../functions/prepend_adm.php");
|
|
|
|
//
|
|
|
|
// Process post parameters
|
|
|
|
// =======================
|
|
|
|
$chkDataId = isset($_GET['dataId']) ? htmlspecialchars($_GET['dataId'], ENT_QUOTES, 'utf-8') : 0;
|
|
|
|
$chkMode = isset($_GET['mode']) ? htmlspecialchars($_GET['mode'], ENT_QUOTES, 'utf-8') : "";
|
|
|
|
$chkDef = isset($_GET['def']) ? $_GET['def'] : "";
|
|
|
|
$chkRange = isset($_GET['range']) ? $_GET['range'] : "";
|
|
|
|
$chkId = isset($_GET['id']) ? htmlspecialchars($_GET['id'], ENT_QUOTES, 'utf-8') : "";
|
|
|
|
$chkVersion = isset($_GET['version']) ? htmlspecialchars($_GET['version'], ENT_QUOTES, 'utf-8') : 0;
|
|
|
|
$chkLinkTab = isset($_GET['linktab']) ? htmlspecialchars($_GET['linktab'], ENT_QUOTES, 'utf-8') : "";
|
|
|
|
if (get_magic_quotes_gpc() == 0) {
|
|
|
|
$chkDef = addslashes($chkDef);
|
|
|
|
$chkRange = addslashes($chkRange);
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Get data
|
|
|
|
// ========
|
|
|
|
if ($chkLinkTab != "") {
|
|
|
|
$strSQL = "SELECT * FROM `tbl_variabledefinition` LEFT JOIN `".$chkLinkTab."` ON `id`=`idSlave` WHERE `idMaster`=$chkDataId ORDER BY `name`";
|
|
|
|
$booReturn = $myDBClass->getDataArray($strSQL,$arrDataLines,$intDataCount);
|
|
|
|
//
|
|
|
|
// Store data to session
|
|
|
|
// ============================
|
|
|
|
if ($chkMode == "") {
|
|
|
|
$_SESSION['variabledefinition'] = "";
|
|
|
|
if ($booReturn && ($intDataCount != 0)) {
|
|
|
|
foreach ($arrDataLines AS $elem) {
|
|
|
|
$arrTemp['id'] = $elem['id'];
|
|
|
|
$arrTemp['definition'] = addslashes($elem['name']);
|
|
|
|
$arrTemp['range'] = addslashes($elem['value']);
|
|
|
|
$arrTemp['status'] = 0;
|
|
|
|
$_SESSION['variabledefinition'][] = $arrTemp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Add mode
|
|
|
|
// ========
|
|
|
|
if ($chkMode == "add") {
|
|
|
|
if (isset($_SESSION['variabledefinition']) && is_array($_SESSION['variabledefinition'])) {
|
|
|
|
$intCheck = 0;
|
|
|
|
foreach ($_SESSION['variabledefinition'] AS $key => $elem) {
|
|
|
|
if (($elem['definition'] == $chkDef) && ($elem['status'] == 0)) {
|
|
|
|
$_SESSION['variabledefinition'][$key]['definition'] = $chkDef;
|
|
|
|
$_SESSION['variabledefinition'][$key]['range'] = $chkRange;
|
|
|
|
$intCheck = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($intCheck == 0) {
|
|
|
|
$arrTemp['id'] = 0;
|
|
|
|
$arrTemp['definition'] = $chkDef;
|
|
|
|
$arrTemp['range'] = $chkRange;
|
|
|
|
$arrTemp['status'] = 0;
|
|
|
|
$_SESSION['variabledefinition'][] = $arrTemp;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$arrTemp['id'] = 0;
|
|
|
|
$arrTemp['definition'] = $chkDef;
|
|
|
|
$arrTemp['range'] = $chkRange;
|
|
|
|
$arrTemp['status'] = 0;
|
|
|
|
$_SESSION['variabledefinition'][] = $arrTemp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Deletion mode
|
|
|
|
// =============
|
|
|
|
if ($chkMode == "del") {
|
|
|
|
if (isset($_SESSION['variabledefinition']) && is_array($_SESSION['variabledefinition'])) {
|
|
|
|
foreach ($_SESSION['variabledefinition'] AS $key => $elem) {
|
|
|
|
if (($elem['definition'] == $chkDef) && ($elem['status'] == 0)) {
|
|
|
|
$_SESSION['variabledefinition'][$key]['status'] = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
|
|
<title>None</title>
|
|
|
|
<link href="<?php echo $_SESSION['SETS']['path']['base_url']; ?>config/main.css" rel="stylesheet" type="text/css">
|
|
|
|
<script type="text/javascript" language="javascript">
|
|
|
|
<!--
|
|
|
|
function doEdit(key,range) {
|
|
|
|
parent.document.frmDetail.txtVariablename.value = decodeURIComponent(key);
|
|
|
|
parent.document.frmDetail.txtVariablevalue.value = decodeURIComponent(range);
|
|
|
|
}
|
|
|
|
function doDel(key) {
|
|
|
|
document.location.href = "<?php echo $_SESSION['SETS']['path']['base_url']; ?>admin/variabledefinitions.php?dataId=<?php echo $chkDataId; ?>&mode=del&def="+key;
|
|
|
|
}
|
|
|
|
//-->
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body style="margin:0">
|
|
|
|
<table cellpadding="0" cellspacing="0" border="0" width="100%">
|
|
|
|
<?php
|
|
|
|
if (isset($_SESSION['variabledefinition']) && is_array($_SESSION['variabledefinition']) && (count($_SESSION['variabledefinition']) != 0)) {
|
|
|
|
foreach($_SESSION['variabledefinition'] AS $elem) {
|
|
|
|
if ($elem['status'] == 0) {
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<td class="tablerow" style="padding-bottom:2px; width:260px"><?php echo htmlentities(stripslashes($elem['definition']),ENT_COMPAT,'UTF-8'); ?></td>
|
|
|
|
<td class="tablerow" style="padding-bottom:2px; width:260px"><?php echo htmlentities(stripslashes($elem['range']),ENT_COMPAT,'UTF-8'); ?></td>
|
|
|
|
<td class="tablerow" style="width:50px" align="right"><img src="<?php echo $_SESSION['SETS']['path']['base_url']; ?>images/edit.gif" width="18" height="18" alt="<?php echo translate('Modify'); ?>" title="<?php echo translate('Modify'); ?>" onClick="doEdit('<?php echo rawurlencode(stripslashes($elem['definition'])); ?>','<?php echo rawurlencode(stripslashes($elem['range'])); ?>')" style="cursor:pointer"> <img src="<?php echo $_SESSION['SETS']['path']['base_url']; ?>images/delete.gif" width="18" height="18" alt="<?php echo translate('Delete'); ?>" title="<?php echo translate('Delete'); ?>" onClick="doDel('<?php echo rawurlencode(stripslashes($elem['definition'])); ?>')" style="cursor:pointer"></td>
|
|
|
|
</tr>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<td class="tablerow"><?php echo translate('No data'); ?></td>
|
|
|
|
<td class="tablerow"> </td>
|
|
|
|
<td class="tablerow" align="right"> </td>
|
|
|
|
</tr>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</table>
|
|
|
|
</body>
|
|
|
|
</html>
|