2005-02-24 18:43:29 +08:00
|
|
|
<?php
|
|
|
|
//
|
|
|
|
// ZoneMinder web watch control view file, $Date$, $Revision$
|
2005-02-24 22:40:14 +08:00
|
|
|
// Copyright (C) 2003, 2004, 2005 Philip Coombes
|
2005-02-24 18:43:29 +08:00
|
|
|
//
|
|
|
|
// 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( 'Monitors' ) )
|
|
|
|
{
|
|
|
|
$view = "error";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-03-21 03:47:04 +08:00
|
|
|
require_once( 'zm_control_funcs.php' );
|
|
|
|
|
2005-02-24 18:43:29 +08:00
|
|
|
$sql = "select C.*,M.* from Monitors as M inner join Controls as C on (M.ControlId = C.Id ) where M.Id = '$mid'";
|
|
|
|
$result = mysql_query( $sql );
|
|
|
|
if ( !$result )
|
|
|
|
die( mysql_error() );
|
|
|
|
$monitor = mysql_fetch_assoc( $result );
|
|
|
|
|
|
|
|
$cmds = getControlCommands( $monitor );
|
|
|
|
|
|
|
|
?>
|
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
|
|
<html>
|
|
|
|
<head>
|
2005-05-06 20:24:57 +08:00
|
|
|
<title><?= ZM_WEB_TITLE_PREFIX ?> - <?= $monitor['Name'] ?> - <?= $zmSlangEvents ?></title>
|
2005-02-24 18:43:29 +08:00
|
|
|
<link rel="stylesheet" href="zm_html_styles.css" type="text/css">
|
|
|
|
<script type="text/javascript">
|
|
|
|
function newWindow(Url,Name,Width,Height)
|
|
|
|
{
|
|
|
|
var Name = window.open(Url,Name,"resizable,scrollbars,width="+Width+",height="+Height);
|
|
|
|
}
|
|
|
|
function closeWindow()
|
|
|
|
{
|
|
|
|
top.window.close();
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<form name="ctrl_form" method="get" action="<?= $PHP_SELF ?>" target="ControlSink<?= $menu?'':$mid ?>">
|
|
|
|
<input type="hidden" name="view" value="blank">
|
|
|
|
<input type="hidden" name="mid" value="<?= $mid ?>">
|
|
|
|
<input type="hidden" name="action" value="control">
|
|
|
|
<input type="hidden" name="control" value="">
|
|
|
|
<center><table width="96%" align="center" border="0" cellspacing="1" cellpadding="0">
|
|
|
|
<tr>
|
|
|
|
<td valign="middle" align="center"><table border="0" cellspacing="0" cellpadding="0" width="100%">
|
|
|
|
<tr>
|
|
|
|
<td valign="top" align="center"> </td>
|
|
|
|
<?php
|
|
|
|
if ( $monitor['CanFocus'] )
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<td valign="top" align="center"><?= controlFocus( $monitor ) ?></td>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
if ( $monitor['CanZoom'] )
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<td valign="top" align="center"><?= controlZoom( $monitor ) ?></td>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
if ( $monitor['CanMove'] || ( $monitor['CanWake'] || $monitor['CanSleep'] || $monitor['CanReset'] ) )
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<td valign="top" align="center"><table border="0" cellspacing="0" cellpadding="0">
|
|
|
|
<?php
|
|
|
|
if ( $monitor['CanMove'] )
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<td valign="top" align="center"><?= controlPanTilt( $monitor ) ?></td>
|
|
|
|
</tr>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
if ( $monitor['CanWake'] || $monitor['CanSleep'] || $monitor['CanReset'] )
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<td valign="top" align="center"><?= controlPower( $monitor ) ?></td>
|
|
|
|
</tr>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</table></td>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
if ( $monitor['CanIris'] )
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<td valign="top" align="center"><?= controlIris( $monitor ) ?></td>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
if ( $monitor['CanWhite'] )
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<td valign="top" align="center"><?= controlWhite( $monitor ) ?></td>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</tr>
|
|
|
|
</table></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<?php if ( $monitor['HasPresets'] ) { ?><td valign="top" align="center"><?= controlPresets( $monitor ) ?></td><?php } ?>
|
|
|
|
</tr>
|
|
|
|
</table></center>
|
|
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</html>
|