Highlight alarm images.

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@494 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stan 2003-04-16 12:53:34 +00:00
parent f152aebf01
commit 52b8e88869
2 changed files with 7 additions and 3 deletions

View File

@ -1589,6 +1589,7 @@ window.focus();
{
$image_path = $anal_image;
}
$img_class = $frame[AlarmFrame]?"alarm":"normal";
?>
<html>
<head>
@ -1614,14 +1615,14 @@ function deleteEvent()
<body>
<table border="0">
<tr><td colspan="2" class="smallhead">Image <?= $eid."-".$fid." ($frame[Score])" ?>
<?php if ( ZM_RECORD_EVENT_STATS ) { ?>
<?php if ( ZM_RECORD_EVENT_STATS && $frame[AlarmFrame] ) { ?>
(<a href="javascript: newWindow( '<?= $PHP_SELF ?>?view=stats&eid=<?= $eid ?>&fid=<?= $fid ?>', 'zmStats', <?= $jws['stats']['w'] ?>, <?= $jws['stats']['h'] ?> );">Stats</a>)
<?php } ?>
</td>
<td align="center" class="text"><a href="javascript: deleteEvent();">Delete</a></td>
<td align="right" class="text"><a href="javascript: closeWindow();">Close</a></td>
</tr>
<tr><td colspan="4"><img src="<?= $image_path ?>" width="<?= $event[Width] ?>" height="<?= $event[Height] ?>" border="0"></td></tr>
<tr><td colspan="4"><img src="<?= $image_path ?>" width="<?= $event[Width] ?>" height="<?= $event[Height] ?>" class="<?= $img_class ?>"></td></tr>
<tr>
<?php if ( $fid > 1 ) { ?>
<td align="center" width="25%" class="text"><a href="<?= $PHP_SELF ?>?view=image&eid=<?= $eid ?>&fid=<?= $first_fid ?>">First</a></td>
@ -1883,8 +1884,9 @@ Learn Pref:&nbsp;<select name="learn_state" class="form" onChange="learn_form.su
exec( $command );
}
}
$img_class = $row[AlarmFrame]?"alarm":"normal";
?>
<td align="center" width="88"><a href="javascript: newWindow( '<?= $PHP_SELF ?>?view=image&eid=<?= $eid ?>&fid=<?= $frame_id ?>', 'zmImage', <?= $event[Width]+$jws['image']['w'] ?>, <?= $event[Height]+$jws['image']['h'] ?> );"><img src="<?= $thumb_image ?>" width="<?= $thumb_width ?>" height="<? echo $thumb_height ?>" border="0" alt="<?= $frame_id ?>/<?= $row[Score] ?>"></a></td>
<td align="center" width="88"><a href="javascript: newWindow( '<?= $PHP_SELF ?>?view=image&eid=<?= $eid ?>&fid=<?= $frame_id ?>', 'zmImage', <?= $event[Width]+$jws['image']['w'] ?>, <?= $event[Height]+$jws['image']['h'] ?> );"><img src="<?= $thumb_image ?>" width="<?= $thumb_width ?>" height="<? echo $thumb_height ?>" class="<?= $img_class ?>" alt="<?= $frame_id ?>/<?= $row[Score] ?>"></a></td>
<?php
flush();
if ( !(++$count % 4) )

View File

@ -31,3 +31,5 @@ a:hover { color: #666699; text-decoration: underline}
.form { border: 1px #7F7FB2 solid; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; color: #333333 }
.textsmall { font-family: Verdana, Arial, Helvetica, sans-serif; font-size:9px; color: #333333; font-weight: normal }
.closetext { font-family: Verdana, Arial, Helvetica, sans-serif; font-size:10px; color: #333333; font-weight: normal; line-height: 12px }
img.normal { border: white solid 1px }
img.alarm { border: red solid 1px }