Bug 336 - Added basic status view.
git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@1984 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
parent
68e3cbcf02
commit
a7a1d213ba
|
@ -63,6 +63,7 @@ web_DATA = \
|
|||
zm_html_view_siren.php \
|
||||
zm_html_view_state.php \
|
||||
zm_html_view_stats.php \
|
||||
zm_html_view_status.php \
|
||||
zm_html_view_timeline.php \
|
||||
zm_html_view_user.php \
|
||||
zm_html_view_version.php \
|
||||
|
@ -167,6 +168,7 @@ EXTRA_DIST = \
|
|||
zm_html_view_siren.php \
|
||||
zm_html_view_state.php \
|
||||
zm_html_view_stats.php \
|
||||
zm_html_view_status.php \
|
||||
zm_html_view_timeline.php \
|
||||
zm_html_view_user.php \
|
||||
zm_html_view_version.php \
|
||||
|
|
|
@ -0,0 +1,74 @@
|
|||
<?php
|
||||
//
|
||||
// ZoneMinder web status view file, $Date$, $Revision$
|
||||
// Copyright (C) 2003, 2004, 2005, 2006 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
//
|
||||
|
||||
if ( !canView( 'System' ) )
|
||||
{
|
||||
$view = "error";
|
||||
return;
|
||||
}
|
||||
|
||||
$zmu_command = getZmuCommand( " --list" );
|
||||
$result = exec( escapeshellcmd( $zmu_command ), $output );
|
||||
|
||||
$refresh = ZM_WEB_REFRESH_STATUS;
|
||||
$url = "$PHP_SELF?view=$view";
|
||||
if ( ZM_WEB_REFRESH_METHOD == "http" )
|
||||
header("Refresh: $refresh; URL=$url" );
|
||||
noCacheHeaders();
|
||||
|
||||
?>
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title><?= ZM_WEB_TITLE_PREFIX ?> - <?= $zmSlangStatus ?></title>
|
||||
<link rel="stylesheet" href="zm_html_styles.css" type="text/css">
|
||||
<script type="text/javascript">
|
||||
<?php
|
||||
if ( ZM_WEB_REFRESH_METHOD == "javascript" )
|
||||
{
|
||||
?>
|
||||
window.setTimeout( "window.location.replace( '<?= $url ?>' )", <?= $refresh*1000 ?> );
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<table width="96%" align="center" border="0" cellpadding="0" cellspacing="0">
|
||||
<?php
|
||||
foreach ( $output as $row )
|
||||
{
|
||||
?>
|
||||
<tr>
|
||||
<?php
|
||||
foreach ( preg_split( "/\s+/", $row ) as $col )
|
||||
{
|
||||
?>
|
||||
<td><?= $col ?></td>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue