121 lines
5.5 KiB
HTML
121 lines
5.5 KiB
HTML
|
<!-- (c) 2005-2012 by Martin Willisegger -->
|
||
|
<!-- -->
|
||
|
<!-- Project : NagiosQL -->
|
||
|
<!-- Component : command administration template -->
|
||
|
<!-- Website : http://www.nagiosql.org -->
|
||
|
<!-- Date : $LastChangedDate: 2012-02-21 14:10:41 +0100 (Tue, 21 Feb 2012) $ -->
|
||
|
<!-- Author : $LastChangedBy: martin $ -->
|
||
|
<!-- Version : 3.2.0 -->
|
||
|
<!-- Revision : $LastChangedRevision: 1229 $ -->
|
||
|
<!-- BEGIN header -->
|
||
|
<div id="content_main">
|
||
|
<div id="content_title">{TITLE}</div>
|
||
|
<!-- END header -->
|
||
|
<!-- BEGIN datainsert -->
|
||
|
<script language="JavaScript" type="text/JavaScript">
|
||
|
<!--
|
||
|
// Interrupt input
|
||
|
function abort() {
|
||
|
this.location.href = "{ACTION_INSERT}?limit={LIMIT}";
|
||
|
}
|
||
|
// Send form
|
||
|
function LockButton() {
|
||
|
if (checkForm() == false) {
|
||
|
return false;
|
||
|
} else {
|
||
|
document.frmDetail.submit();
|
||
|
document.frmDetail.subForm.disabled = true;
|
||
|
}
|
||
|
}
|
||
|
// Check form entries
|
||
|
function checkForm() {
|
||
|
// Are all required fields filled in?
|
||
|
var fields1 = "tfValue1,tfValue2";
|
||
|
var msg1 = "{FILL_ALLFIELDS}";
|
||
|
var msg2 = "{FILL_ILLEGALCHARS}";
|
||
|
var header = "{LANG_FORMCHECK}";
|
||
|
var form = document.frmDetail;
|
||
|
var check = false;
|
||
|
check = checkfields(fields1,form,myFocusObject);
|
||
|
if (check == false) {
|
||
|
msginit(msg1,header,1);
|
||
|
return false;
|
||
|
}
|
||
|
// Check for illegal chars
|
||
|
if (form.tfValue1.value.match(/[^a-zA-Z0-9.@_-]/)) {
|
||
|
msginit(msg2+" {LANG_COMMAND}",header,1);
|
||
|
form.tfDomain.focus();
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
//-->
|
||
|
</script>
|
||
|
<form name="frmDetail" method="post" action="{ACTION_INSERT}">
|
||
|
<table border="0" cellpadding="0" class="content_formtable">
|
||
|
<tr>
|
||
|
<td class="content_tbl_row1">{LANG_COMMAND}*</td>
|
||
|
<td class="content_tbl_row2"><input name="tfValue1" type="text" id="tfValue1" value="{DAT_COMMAND_NAME}" class="inpmust"></td>
|
||
|
<td class="content_tbl_row3"><img src="{IMAGE_PATH}tip.gif" alt="{LANG_HELP}" title="{LANG_HELP}" width="18" height="18" onclick="dialoginit('command','command_name','all','Info')" class="infobutton_1"></td>
|
||
|
<td class="content_tbl_row1"> </td>
|
||
|
<td class="content_tbl_row2"> </td>
|
||
|
<td class="content_tbl_row4"> </td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>{LANG_COMMAND_LINE}*</td>
|
||
|
<td colspan="4"><input name="tfValue2" type="text" id="tfValue2" value="{DAT_COMMAND_LINE}" style="width:650px;" class="inpmust"></td>
|
||
|
<td><img src="{IMAGE_PATH}tip.gif" alt="{LANG_HELP}" title="{LANG_HELP}" width="18" height="18" onclick="dialoginit('command','command_line','all','Info')" class="infobutton_1"></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>{LANG_COMMAND_TYPE}</td>
|
||
|
<td>
|
||
|
<select name="selValue1" id="selValue1" class="selectborder">
|
||
|
<option value="0">{NO_TYPE}</option>
|
||
|
<option value="1" {CHECK_TYPE_SELECTED}>{CHECK_TYPE}</option>
|
||
|
<option value="2" {MISC_TYPE_SELECTED}>{MISC_TYPE}</option>
|
||
|
</select>
|
||
|
</td>
|
||
|
<td colspan="4"><img src="{IMAGE_PATH}tip.gif" alt="{LANG_HELP}" title="{LANG_HELP}" width="18" height="18" onclick="dialoginit('command','command_type','all','Info')" class="infobutton_1">
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr {RESTRICT_GROUP_ADMIN}>
|
||
|
<td>{LANG_ACCESS_GROUP}</td>
|
||
|
<td>
|
||
|
<select name="selAccGr" class="selectborder">
|
||
|
<!-- BEGIN acc_group -->
|
||
|
<option value="{DAT_ACC_GROUP_ID}" class="empty_class {SPECIAL_STYLE}" {DAT_ACC_GROUP_SEL}>{DAT_ACC_GROUP}</option>
|
||
|
<!-- END acc_group -->
|
||
|
</select>
|
||
|
</td>
|
||
|
<td colspan="4"><img src="{IMAGE_PATH}tip.gif" alt="{LANG_HELP}" title="{LANG_HELP}" width="18" height="18" onclick="dialoginit('common','accessgroup','all','Info')" class="infobutton_1"></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>{LANG_REGISTERED}</td>
|
||
|
<td><input name="chbRegister" type="checkbox" class="checkbox" id="chbRegister" value="1" {REG_CHECKED}></td>
|
||
|
<td colspan="4"><img src="{IMAGE_PATH}tip.gif" alt="{LANG_HELP}" title="{LANG_HELP}" width="18" height="18" onclick="dialoginit('common','registered','all','Info')" class="infobutton_1"></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>{LANG_ACTIVE}</td>
|
||
|
<td colspan="5"><input name="chbActive" type="checkbox" class="checkbox" id="chbActive" value="1" {ACT_CHECKED} {ACT_DISABLED}>
|
||
|
<input name="hidActive" type="hidden" id="hidActive" value="{ACTIVE}">
|
||
|
<input name="modus" type="hidden" id="modus" value="{MODUS}">
|
||
|
<input name="hidId" type="hidden" id="hidId" value="{DAT_ID}">
|
||
|
<input name="hidLimit" type="hidden" id="hidLimit" value="{LIMIT}">
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td colspan="6"> </td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td colspan="3" valign="bottom"><input name="subForm" type="button" id="subForm" value="{LANG_SAVE}" onClick="LockButton()" {DISABLE_SAVE}> <input name="subAbort" type="button" id="subAbort" onClick="abort()" value="{LANG_ABORT}"><span class="required_info">* {LANG_REQUIRED}</span></td>
|
||
|
<td colspan="3"><span class="redmessage">{WARNING}</span></td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</form>
|
||
|
<br>
|
||
|
<span id="rel_text" class="{RELATION_CLASS}"><a href="javascript:showRelationData(1)" style="color:#00F">[{LANG_SHOW_RELATION_DATA}]</a></span><span id="rel_info" class="elementHide"><a href="javascript:showRelationData(0)" style="color:#00F">[{LANG_HIDE_RELATION_DATA}]</a>{CHECK_MUST_DATA}</span>
|
||
|
</div>
|
||
|
<div id="msgcontainer"></div>
|
||
|
<div id="infodialog">
|
||
|
<div id="dialogcontent" class="bd"></div>
|
||
|
</div>
|
||
|
<!-- END datainsert -->
|