2003-07-11 17:27:56 +08:00
|
|
|
<?php
|
|
|
|
if ( !canEdit( 'Monitors' ) )
|
|
|
|
{
|
|
|
|
$view = "error";
|
2003-07-14 22:14:34 +08:00
|
|
|
return;
|
2003-07-11 17:27:56 +08:00
|
|
|
}
|
|
|
|
$result = mysql_query( "select * from Monitors where Id = '$mid'" );
|
|
|
|
if ( !$result )
|
|
|
|
die( mysql_error() );
|
|
|
|
$monitor = mysql_fetch_assoc( $result );
|
|
|
|
?>
|
|
|
|
<html>
|
|
|
|
<head>
|
2004-01-07 20:57:07 +08:00
|
|
|
<title>ZM - <?= $zmSlangFunction ?> - <?= $monitor[Name] ?></title>
|
2003-07-11 17:27:56 +08:00
|
|
|
<link rel="stylesheet" href="zm_styles.css" type="text/css">
|
|
|
|
<script language="JavaScript">
|
|
|
|
<?php
|
|
|
|
if ( $refresh_parent )
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
opener.location.reload(true);
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
window.focus();
|
|
|
|
function refreshWindow()
|
|
|
|
{
|
|
|
|
window.location.reload(true);
|
|
|
|
}
|
|
|
|
function closeWindow()
|
|
|
|
{
|
|
|
|
window.close();
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<table border="0" cellspacing="0" cellpadding="4" width="100%">
|
|
|
|
<tr>
|
2004-01-07 20:57:07 +08:00
|
|
|
<td colspan="2" align="center" class="head"><?= sprintf( $zmClangMonitorFunction, $monitor[Name] ) ?></td>
|
2003-07-11 17:27:56 +08:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<form method="get" action="<?= $PHP_SELF ?>">
|
|
|
|
<input type="hidden" name="view" value="none">
|
|
|
|
<input type="hidden" name="action" value="function">
|
|
|
|
<input type="hidden" name="mid" value="<?= $mid ?>">
|
|
|
|
<td colspan="2" align="center"><select name="new_function" class="form">
|
|
|
|
<?php
|
|
|
|
foreach ( getEnumValues( 'Monitors', 'Function' ) as $opt_function )
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<option value="<?= $opt_function ?>"<?php if ( $opt_function == $monitor['Function'] ) { ?> selected<?php } ?>><?= $opt_function ?></option>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2004-01-07 20:57:07 +08:00
|
|
|
<td align="center"><input type="submit" value="<?= $zmSlangSave ?>" class="form"></td>
|
|
|
|
<td align="center"><input type="button" value="<?= $zmSlangCancel ?>" class="form" onClick="closeWindow()"></td>
|
2003-07-11 17:27:56 +08:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</body>
|
|
|
|
</html>
|