85 lines
2.4 KiB
PHP
85 lines
2.4 KiB
PHP
|
<?php
|
||
|
//
|
||
|
// ZoneMinder web run state view file, $Date$, $Revision$
|
||
|
// Copyright (C) 2003 Philip Coombes
|
||
|
//
|
||
|
// This program is free software; you can redistribute it and/or
|
||
|
// modify it under the terms of the GNU General Public License
|
||
|
// as published by the Free Software Foundation; either version 2
|
||
|
// of the License, or (at your option) any later version.
|
||
|
//
|
||
|
// This program is distributed in the hope that it will be useful,
|
||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
// GNU General Public License for more details.
|
||
|
//
|
||
|
// You should have received a copy of the GNU General Public License
|
||
|
// along with this program; if not, write to the Free Software
|
||
|
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||
|
//
|
||
|
|
||
|
if ( !canEdit( 'System' ) )
|
||
|
{
|
||
|
$view = "error";
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
$result = mysql_query( "select * from Monitors as M inner join Controls as C on (M.ControlId = C.Id ) where M.Id = '$mid'" );
|
||
|
if ( !$result )
|
||
|
die( mysql_error() );
|
||
|
$monitor = mysql_fetch_assoc( $result );
|
||
|
|
||
|
$presets = array();
|
||
|
for ( $i = 1; $i <= $monitor['NumPresets']; $i++ )
|
||
|
{
|
||
|
$presets[$i] = "Preset $i";
|
||
|
}
|
||
|
?>
|
||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>ZM - <?= $zmSlangSetPreset ?></title>
|
||
|
<link rel="stylesheet" href="zm_html_styles.css" type="text/css">
|
||
|
<script type="text/javascript">
|
||
|
<?php
|
||
|
if ( !empty($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>
|
||
|
<td colspan="4" align="center" class="head">ZoneMinder - <?= $zmSlangSetPreset ?></td>
|
||
|
</tr>
|
||
|
<form name="preset_form" method="post" action="<?= $PHP_SELF ?>">
|
||
|
<input type="hidden" name="view" value="<?= $view ?>">
|
||
|
<input type="hidden" name="mid" value="<?= $mid ?>">
|
||
|
<input type="hidden" name="action" value="control">
|
||
|
<input type="hidden" name="control" value="preset_set">
|
||
|
<tr>
|
||
|
<td colspan="2" align="center"><?= buildSelect( "preset", $presets ) ?></td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
<table border="0" cellspacing="0" cellpadding="1" width="100%">
|
||
|
<tr>
|
||
|
<td align="right"><input type="submit" value="<?= $zmSlangSave ?>" class="form"> <input type="button" value="<?= $zmSlangCancel ?>" class="form" onClick="closeWindow()"></td>
|
||
|
</tr>
|
||
|
</form>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|