79 lines
2.3 KiB
PHP
79 lines
2.3 KiB
PHP
<?php
|
|
//
|
|
// ZoneMinder web control view file, $Date$, $Revision$
|
|
// Copyright (C) 2001-2008 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
//
|
|
|
|
if ( !canView( 'Control' ) )
|
|
{
|
|
$view = "error";
|
|
return;
|
|
}
|
|
|
|
$groupSql = "";
|
|
if ( !empty($_REQUEST['group']) ) {
|
|
$row = dbFetchOne( 'SELECT * FROM Groups WHERE Id = ?', NULL, array($_REQUEST['group']) );
|
|
$groupSql = " and find_in_set( Id, '".$row['MonitorIds']."' )";
|
|
}
|
|
|
|
$mid = validInt($_REQUEST['mid']);
|
|
|
|
$sql = "SELECT * FROM Monitors WHERE Function != 'None' AND Controllable = 1$groupSql ORDER BY Sequence";
|
|
$mids = array();
|
|
foreach( dbFetchAll( $sql ) as $row )
|
|
{
|
|
if ( !visibleMonitor( $row['Id'] ) )
|
|
{
|
|
continue;
|
|
}
|
|
if ( empty($mid) )
|
|
$mid = $row['Id'];
|
|
$mids[$row['Id']] = $row['Name'];
|
|
}
|
|
|
|
foreach ( getSkinIncludes( 'includes/control_functions.php' ) as $includeFile )
|
|
require_once $includeFile;
|
|
|
|
$monitor = new Monitor( $mid );
|
|
|
|
$focusWindow = true;
|
|
|
|
xhtmlHeaders(__FILE__, translate('Control') );
|
|
?>
|
|
<body>
|
|
<div id="page">
|
|
<div id="header">
|
|
<div id="headerButtons">
|
|
<a href="#" onclick="closeWindow();"><?php echo translate('Close') ?></a>
|
|
</div>
|
|
<h2><?php echo translate('Control') ?></h2>
|
|
<div id="headerControl">
|
|
<form name="contentForm" id="contentForm" method="get" action="<?php echo $_SERVER['PHP_SELF'] ?>">
|
|
<input type="hidden" name="view" value="<?php echo $view ?>"/>
|
|
<?php echo buildSelect( "mid", $mids, "this.form.submit();" ); ?>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div id="content">
|
|
<div id="ptzControls" class="ptzControls">
|
|
<?php echo ptzControls( $monitor ) ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|