2003-07-11 17:27:56 +08:00
|
|
|
<?php
|
|
|
|
if ( !canEdit( 'System' ) )
|
|
|
|
{
|
|
|
|
$view = "error";
|
2003-07-14 22:14:34 +08:00
|
|
|
return;
|
2003-07-11 17:27:56 +08:00
|
|
|
}
|
|
|
|
$result = mysql_query( "select * from Users where Id = '$uid'" );
|
|
|
|
if ( !$result )
|
|
|
|
die( mysql_error() );
|
|
|
|
if ( !($row = mysql_fetch_assoc( $result )) )
|
|
|
|
{
|
|
|
|
$row = array();
|
2004-01-07 21:12:55 +08:00
|
|
|
$row[Username] = $zmSlangNewUser;
|
2003-07-11 17:27:56 +08:00
|
|
|
$row[Enabled] = 1;
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<html>
|
|
|
|
<head>
|
2004-01-07 20:57:07 +08:00
|
|
|
<title>ZM - <?= $zmSlangUser ?> - <?= $row[Username] ?></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 validateForm(Form)
|
|
|
|
{
|
|
|
|
var errors = new Array();
|
|
|
|
if ( !Form.new_username.value )
|
|
|
|
{
|
|
|
|
errors[errors.length] = "You must supply a username";
|
|
|
|
}
|
|
|
|
if ( !Form.new_password.value )
|
|
|
|
{
|
|
|
|
errors[errors.length] = "You must supply a password";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( !Form.new_password2.value )
|
|
|
|
{
|
|
|
|
errors[errors.length] = "You must confirm the password";
|
|
|
|
}
|
|
|
|
else if ( Form.new_password.value != Form.new_password2.value )
|
|
|
|
{
|
|
|
|
errors[errors.length] = "The new and confirm passwords are different";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( errors.length )
|
|
|
|
{
|
|
|
|
alert( errors.join( "\n" ) );
|
|
|
|
return( false );
|
|
|
|
}
|
|
|
|
return( 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="left" class="head"><?= $zmSlangUser ?>- "<?= $row[Username] ?>"</td>
|
2003-07-11 17:27:56 +08:00
|
|
|
</tr>
|
2003-12-16 22:30:23 +08:00
|
|
|
<form name="user_form" method="post" action="<?= $PHP_SELF ?>" onsubmit="return validateForm( document.user_form )">
|
2003-07-11 17:27:56 +08:00
|
|
|
<input type="hidden" name="view" value="<?= $view ?>">
|
|
|
|
<input type="hidden" name="action" value="user">
|
|
|
|
<input type="hidden" name="uid" value="<?= $uid ?>">
|
2004-01-07 20:57:07 +08:00
|
|
|
<tr><td align="right" class="text"><?= $zmSlangUsername ?></td><td align="left" class="text"><input type="text" name="new_username" value="<?= $row[Username] ?>" size="16" class="form"></td></tr>
|
|
|
|
<tr><td align="right" class="text"><?= $zmSlangNewPassword ?></td><td align="left" class="text"><input type="password" name="new_password" value="<?= $row[Password] ?>" size="16" class="form"></td></tr>
|
|
|
|
<tr><td align="right" class="text"><?= $zmSlangConfirmPassword ?></td><td align="left" class="text"><input type="password" name="new_password2" value="<?= $row[Password] ?>" size="16" class="form"></td></tr>
|
2004-01-07 21:24:44 +08:00
|
|
|
<tr><td align="right" class="text"><?= $zmSlangLanguage ?></td><td align="left" class="text"><input type="text" name="new_language" value="<?= $row[Language] ?>" size="16" class="form"></td></tr>
|
2003-07-11 17:27:56 +08:00
|
|
|
<?php
|
|
|
|
$new_enabled = $row[Enabled];
|
2004-01-07 20:57:07 +08:00
|
|
|
$yesno = array( 0=>$zmSlangNo, 1=>$zmSlangYes );
|
2003-07-11 17:27:56 +08:00
|
|
|
?>
|
2004-01-07 20:57:07 +08:00
|
|
|
<tr><td align="right" class="text"><?= $zmSlangEnabled ?></td><td align="left" class="text"><?= buildSelect( "new_enabled", $yesno ) ?></td></tr>
|
2003-07-11 17:27:56 +08:00
|
|
|
<?php
|
|
|
|
$new_stream = $row[Stream];
|
2004-01-07 21:39:12 +08:00
|
|
|
$nv = array( 'None'=>$zmSlangNone, 'View'=>$zmSlangView );
|
2003-07-11 17:27:56 +08:00
|
|
|
?>
|
|
|
|
<tr><td align="right" class="text">Stream</td><td align="left" class="text"><?= buildSelect( "new_stream", $nv ) ?></td></tr>
|
|
|
|
<?php
|
|
|
|
$new_events = $row[Events];
|
|
|
|
$new_monitors = $row[Monitors];
|
|
|
|
$new_system = $row[System];
|
2004-01-07 21:39:12 +08:00
|
|
|
$nve = array( 'None'=>$zmSlangNone, 'View'=>$zmSlangView, 'Edit'=>$zmSlangEdit );
|
2003-07-11 17:27:56 +08:00
|
|
|
?>
|
2004-01-07 20:57:07 +08:00
|
|
|
<tr><td align="right" class="text"><?= $zmSlangEvents ?></td><td align="left" class="text"><?= buildSelect( "new_events", $nve ) ?></td></tr>
|
|
|
|
<tr><td align="right" class="text"><?= $zmSlangMonitors ?></td><td align="left" class="text"><?= buildSelect( "new_monitors", $nve ) ?></td></tr>
|
|
|
|
<tr><td align="right" class="text"><?= $zmSlangSystem ?></td><td align="left" class="text"><?= buildSelect( "new_system", $nve ) ?></td></tr>
|
|
|
|
<tr><td align="right" class="text"><?= $zmSlangRestrictedCameraIds ?></td><td align="left" class="text"><input type="text" name="new_monitor_ids" value="<?= $row[MonitorIds] ?>" size="16" class="form"></td></tr>
|
2003-07-11 17:27:56 +08:00
|
|
|
<tr>
|
2004-01-07 20:57:07 +08:00
|
|
|
<td align="right"><input type="submit" value="<?= $zmSlangSave ?>" class="form"></td><td align="left"><input type="button" value="<?= $zmSlangClose ?>" class="form" onClick="closeWindow()"></td>
|
2003-07-11 17:27:56 +08:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</body>
|
|
|
|
</html>
|