2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
//
|
|
|
|
// ZoneMinder web frames view file, $Date$, $Revision$
|
2008-07-25 17:48:16 +08:00
|
|
|
// Copyright (C) 2001-2008 Philip Coombes
|
2008-07-14 21:54:50 +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 ( !canView( 'Events' ) )
|
|
|
|
{
|
2008-09-26 17:47:20 +08:00
|
|
|
$view = "error";
|
2008-07-14 21:54:50 +08:00
|
|
|
return;
|
|
|
|
}
|
2013-12-18 01:53:15 +08:00
|
|
|
$sql = 'SELECT E.*,M.Name AS MonitorName FROM Events AS E INNER JOIN Monitors AS M ON E.MonitorId = M.Id WHERE E.Id = ?';
|
|
|
|
$event = dbFetchOne( $sql, NULL, array($_REQUEST['eid']) );
|
2008-07-14 21:54:50 +08:00
|
|
|
|
2013-12-18 01:53:15 +08:00
|
|
|
$sql = 'SELECT *, unix_timestamp( TimeStamp ) AS UnixTimeStamp FROM Frames WHERE EventID = ? ORDER BY FrameId';
|
2014-03-22 05:16:56 +08:00
|
|
|
$frames = dbFetchAll( $sql, NULL, array( $_REQUEST['eid'] ) );
|
2008-07-14 21:54:50 +08:00
|
|
|
|
|
|
|
$focusWindow = true;
|
|
|
|
|
2008-09-26 17:47:20 +08:00
|
|
|
xhtmlHeaders(__FILE__, $SLANG['Frames']." - ".$event['Id'] );
|
2008-07-14 21:54:50 +08:00
|
|
|
?>
|
|
|
|
<body>
|
|
|
|
<div id="page">
|
|
|
|
<div id="header">
|
|
|
|
<div id="headerButtons"><a href="#" onclick="closeWindow();"><?= $SLANG['Close'] ?></a></div>
|
2008-09-26 17:47:20 +08:00
|
|
|
<h2><?= $SLANG['Frames'] ?> - <?= $event['Id'] ?></h2>
|
2008-07-14 21:54:50 +08:00
|
|
|
</div>
|
|
|
|
<div id="content">
|
|
|
|
<form name="contentForm" id="contentForm" method="get" action="<?= $_SERVER['PHP_SELF'] ?>">
|
|
|
|
<input type="hidden" name="view" value="none"/>
|
|
|
|
<table id="contentTable" class="major" cellspacing="0">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th class="colId"><?= $SLANG['FrameId'] ?></th>
|
|
|
|
<th class="colType"><?= $SLANG['Type'] ?></th>
|
|
|
|
<th class="colTimeStamp"><?= $SLANG['TimeStamp'] ?></th>
|
|
|
|
<th class="colTimeDelta"><?= $SLANG['TimeDelta'] ?></th>
|
|
|
|
<th class="colScore"><?= $SLANG['Score'] ?></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<?php
|
|
|
|
if ( count($frames) )
|
|
|
|
{
|
|
|
|
foreach ( $frames as $frame )
|
|
|
|
{
|
|
|
|
$class = strtolower($frame['Type']);
|
|
|
|
?>
|
|
|
|
<tr class="<?= $class ?>">
|
2009-10-17 01:09:16 +08:00
|
|
|
<td class="colId"><?= makePopupLink( '?view=frame&eid='.$event['Id'].'&fid='.$frame['FrameId'], 'zmImage', array( 'image', $event['Width'], $event['Height'] ), $frame['FrameId'] ) ?></td>
|
2008-07-14 21:54:50 +08:00
|
|
|
<td class="colType"><?= $frame['Type'] ?></td>
|
|
|
|
<td class="colTimeStamp"><?= strftime( STRF_FMT_TIME, $frame['UnixTimeStamp'] ) ?></td>
|
|
|
|
<td class="colTimeDelta"><?= number_format( $frame['Delta'], 2 ) ?></td>
|
|
|
|
<?php
|
|
|
|
if ( ZM_RECORD_EVENT_STATS && ($frame['Type'] == 'Alarm') )
|
|
|
|
{
|
|
|
|
?>
|
2009-10-17 01:09:16 +08:00
|
|
|
<td class="colScore"><?= makePopupLink( '?view=stats&eid='.$event['Id'].'&fid='.$frame['FrameId'], 'zmStats', 'stats', $frame['Score'] ) ?></td>
|
2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<td class="colScore"><?= $frame['Score'] ?></td>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</tr>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<td colspan="5"><?= $SLANG['NoFramesRecorded'] ?></td>
|
|
|
|
</tr>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<div id="contentButtons">
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|