2006-05-17 20:52:14 +08:00
|
|
|
<?php
|
|
|
|
//
|
|
|
|
// ZoneMinder web status view file, $Date$, $Revision$
|
2008-07-25 17:48:16 +08:00
|
|
|
// Copyright (C) 2001-2008 Philip Coombes
|
2006-05-17 20:52:14 +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
|
2016-12-26 23:23:16 +08:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2006-05-17 20:52:14 +08:00
|
|
|
//
|
|
|
|
|
2019-01-31 03:36:46 +08:00
|
|
|
if ( !canView('System') ) {
|
|
|
|
$view = 'error';
|
|
|
|
return;
|
2006-05-17 20:52:14 +08:00
|
|
|
}
|
|
|
|
|
2019-01-31 03:36:46 +08:00
|
|
|
$zmuCommand = getZmuCommand(' --list');
|
|
|
|
$result = exec(escapeshellcmd($zmuCommand), $output);
|
2006-05-17 20:52:14 +08:00
|
|
|
|
|
|
|
$refresh = ZM_WEB_REFRESH_STATUS;
|
2008-09-26 17:47:20 +08:00
|
|
|
$url = '?view='.$view;
|
2006-05-17 20:52:14 +08:00
|
|
|
noCacheHeaders();
|
|
|
|
|
2019-01-31 03:36:46 +08:00
|
|
|
xhtmlHeaders(__FILE__, translate('Status'));
|
2006-05-17 20:52:14 +08:00
|
|
|
?>
|
2008-07-14 21:54:50 +08:00
|
|
|
<body>
|
|
|
|
<div id="page">
|
|
|
|
<div id="header">
|
2015-05-10 21:10:30 +08:00
|
|
|
<h2><?php echo translate('Status') ?></h2>
|
2008-07-14 21:54:50 +08:00
|
|
|
</div>
|
|
|
|
<div id="content">
|
2019-01-31 03:36:46 +08:00
|
|
|
<table id="contentTable" class="major">
|
2006-05-17 20:52:14 +08:00
|
|
|
<?php
|
2019-01-31 03:36:46 +08:00
|
|
|
if ( $row = array_shift($output) ) {
|
2006-05-17 20:52:14 +08:00
|
|
|
?>
|
2008-07-14 21:54:50 +08:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<?php
|
2019-01-31 03:36:46 +08:00
|
|
|
foreach ( preg_split('/\s+/', $row) as $col ) {
|
2008-07-14 21:54:50 +08:00
|
|
|
?>
|
2014-12-05 07:44:23 +08:00
|
|
|
<th><?php echo $col ?></th>
|
2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
2019-01-31 03:36:46 +08:00
|
|
|
}
|
2008-07-14 21:54:50 +08:00
|
|
|
?>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
2006-05-17 20:52:14 +08:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
2008-07-14 21:54:50 +08:00
|
|
|
<tbody>
|
2006-05-17 20:52:14 +08:00
|
|
|
<?php
|
2019-01-31 03:36:46 +08:00
|
|
|
foreach ( $output as $row ) {
|
2006-05-17 20:52:14 +08:00
|
|
|
?>
|
2008-07-14 21:54:50 +08:00
|
|
|
<tr>
|
2006-05-17 20:52:14 +08:00
|
|
|
<?php
|
2019-01-31 03:36:46 +08:00
|
|
|
foreach ( preg_split('/\s+/', $row) as $col ) {
|
2006-05-17 20:52:14 +08:00
|
|
|
?>
|
2014-12-05 07:44:23 +08:00
|
|
|
<td><?php echo $col ?></td>
|
2006-05-17 20:52:14 +08:00
|
|
|
<?php
|
2019-01-31 03:36:46 +08:00
|
|
|
}
|
2006-05-17 20:52:14 +08:00
|
|
|
?>
|
2008-07-14 21:54:50 +08:00
|
|
|
</tr>
|
2006-05-17 20:52:14 +08:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
2008-07-14 21:54:50 +08:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-09-03 06:17:12 +08:00
|
|
|
<?php xhtmlFooter() ?>
|