zoneminder/web/skins/classic/views/zones.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

139 lines
5.6 KiB
PHP
Raw Normal View History

<?php
//
// ZoneMinder web zones view file
// 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.
//
2020-08-31 22:14:53 +08:00
$mids = null;
if ( isset($_REQUEST['mid']) ) {
$mids = array();
$mids[] = validInt($_REQUEST['mid']);
} else if ( isset($_REQUEST['mids']) ) {
$mids = $_REQUEST['mids'];
} else {
$mids = dbFetchAll('SELECT Id FROM Monitors'.($user['MonitorIds'] ? 'WHERE Id IN ('.$user['MonitorIds'].')' : ''), 'Id');
}
2020-08-31 22:14:53 +08:00
if ( !($mids and count($mids)) ) {
$view = 'error';
return;
}
2020-08-31 22:14:53 +08:00
$monitors = ZM\ZM_Object::Objects_Indexed_By_Id('ZM\Monitor', array('Id'=>$mids));
2019-02-26 04:24:25 +08:00
xhtmlHeaders(__FILE__, translate('Zones'));
?>
<body>
2020-09-25 20:56:09 +08:00
<?php echo getNavBarHTML() ?>
<div id="page">
2020-09-26 02:44:55 +08:00
<div class="w-100 py-1">
<div class="float-left pl-3">
<button type="button" id="backBtn" class="btn btn-normal" data-toggle="tooltip" data-placement="top" title="<?php echo translate('Back') ?>" disabled><i class="fa fa-arrow-left"></i></button>
<button type="button" id="refreshBtn" class="btn btn-normal" data-toggle="tooltip" data-placement="top" title="<?php echo translate('Refresh') ?>" ><i class="fa fa-refresh"></i></button>
</div>
<div class="w-100 pt-2">
<h2><?php echo translate('Zones') ?></h2>
</div>
</div>
<div id="content">
<form name="contentForm" id="contentForm" method="get" action="?">
<input type="hidden" name="view" value="<?php echo $view ?>"/>
<input type="hidden" name="action" value="delete"/>
2020-08-31 22:14:53 +08:00
<?php
foreach ( $mids as $mid ) {
$monitor = $monitors[$mid];
2020-09-03 05:36:01 +08:00
$monitor->connKey();
2020-08-31 22:14:53 +08:00
# ViewWidth() and ViewHeight() are already rotated
$minX = 0;
$maxX = $monitor->ViewWidth()-1;
$minY = 0;
$maxY = $monitor->ViewHeight()-1;
$zones = array();
foreach ( dbFetchAll('SELECT * FROM Zones WHERE MonitorId=? ORDER BY Area DESC', NULL, array($mid)) as $row ) {
$row['Points'] = coordsToPoints($row['Coords']);
limitPoints($row['Points'], $minX, $minY, $maxX, $maxY);
$row['Coords'] = pointsToCoords($row['Points']);
$row['AreaCoords'] = preg_replace('/\s+/', ',', $row['Coords']);
$zones[] = $row;
}
$options = array('width'=>'100%', 'height'=>'auto');
?>
<div class="Monitor">
<input type="hidden" name="mids[]" value="<?php echo $mid ?>"/>
2020-07-14 02:51:07 +08:00
<div class="ZonesImage">
2020-08-31 22:14:53 +08:00
<?php echo getStreamHTML($monitor, $options); ?>
2020-09-03 05:36:01 +08:00
<svg class="zones" viewBox="0 0 <?php echo $monitor->ViewWidth().' '.$monitor->ViewHeight() ?>">
2017-03-02 04:26:40 +08:00
<?php
foreach( array_reverse($zones) as $zone ) {
?>
2020-09-26 01:34:04 +08:00
<polygon points="<?php echo $zone['AreaCoords'] ?>"
class="zmlink <?php echo $zone['Type']?>"
data-on-click-true="streamCmdQuit"
data-url="?view=zone&amp;mid=<?php echo $mid ?>&amp;zid=<?php echo $zone['Id'] ?>"
/>
2017-03-02 04:26:40 +08:00
<?php
} // end foreach zone
?>
Sorry, your browser does not support inline SVG
</svg>
2021-01-07 04:27:06 +08:00
<div id="monitorState">
<?php echo translate('State') ?>:&nbsp;<span id="stateValue<?php echo $monitor->Id() ?>"></span>&nbsp;-&nbsp;<span id="fpsValue<?php echo $monitor->Id() ?>"></span>&nbsp;fps
</div>
</div>
2020-08-31 22:14:53 +08:00
<div class="zones">
<table id="zonesTable" class="major">
<thead>
<tr>
<th class="colName"><?php echo translate('Name') ?></th>
<th class="colType"><?php echo translate('Type') ?></th>
<th class="colUnits"><?php echo translate('AreaUnits') ?></th>
<th class="colMark"><?php echo translate('Mark') ?></th>
</tr>
</thead>
<tbody>
<?php
foreach( $zones as $zone ) {
?>
<tr>
2020-09-25 23:52:13 +08:00
<td class="colName"><?php echo makeLink('?view=zone&mid='.$mid.'&zid='.$zone['Id'], validHtmlStr($zone['Name']), true, 'data-on-click-true="streamCmdQuit"'); ?></td>
<td class="colType"><?php echo validHtmlStr($zone['Type']) ?></td>
<td class="colUnits"><?php echo $zone['Area'] ?>&nbsp;/&nbsp;<?php echo sprintf('%.2f', ($zone['Area']*100)/($monitor->ViewWidth()*$monitor->ViewHeight()) ) ?></td>
<td class="colMark"><input type="checkbox" name="markZids[]" value="<?php echo $zone['Id'] ?>" data-on-click-this="configureDeleteButton"<?php if ( !canEdit('Monitors') ) { ?> disabled="disabled"<?php } ?>/></td>
</tr>
<?php
}
?>
</tbody>
</table>
2020-09-25 23:52:13 +08:00
<div id="contentButtons">
<?php echo makeButton('?view=zone&mid='.$mid.'&zid=0', 'AddNewZone', canEdit('Monitors')); ?>
<button type="submit" name="deleteBtn" value="Delete" disabled="disabled"><?php echo translate('Delete') ?></button>
</div>
</div><!--zones-->
2020-08-31 22:14:53 +08:00
<br class="clear"/>
</div><!--Monitor-->
<?php
} # end foreach monitor
?>
</form>
</div>
</div>
2020-09-03 05:36:01 +08:00
<script src="<?php echo cache_bust('js/MonitorStream.js') ?>"></script>
<?php xhtmlFooter() ?>