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

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

80 lines
1.8 KiB
PHP
Raw Normal View History

<?php
//
// ZoneMinder web status view file, $Date$, $Revision$
// 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.
//
2019-01-31 03:36:46 +08:00
if ( !canView('System') ) {
$view = 'error';
return;
}
2019-01-31 03:36:46 +08:00
$zmuCommand = getZmuCommand(' --list');
$result = exec(escapeshellcmd($zmuCommand), $output);
$refresh = ZM_WEB_REFRESH_STATUS;
$url = '?view='.$view;
noCacheHeaders();
2019-01-31 03:36:46 +08:00
xhtmlHeaders(__FILE__, translate('Status'));
?>
<body>
<div id="page">
<div id="header">
2015-05-10 21:10:30 +08:00
<h2><?php echo translate('Status') ?></h2>
</div>
<div id="content">
2019-01-31 03:36:46 +08:00
<table id="contentTable" class="major">
<?php
2019-01-31 03:36:46 +08:00
if ( $row = array_shift($output) ) {
?>
<thead>
<tr>
<?php
2019-01-31 03:36:46 +08:00
foreach ( preg_split('/\s+/', $row) as $col ) {
?>
<th><?php echo $col ?></th>
<?php
2019-01-31 03:36:46 +08:00
}
?>
</tr>
</thead>
<?php
}
?>
<tbody>
<?php
2019-01-31 03:36:46 +08:00
foreach ( $output as $row ) {
?>
<tr>
<?php
2019-01-31 03:36:46 +08:00
foreach ( preg_split('/\s+/', $row) as $col ) {
?>
<td><?php echo $col ?></td>
<?php
2019-01-31 03:36:46 +08:00
}
?>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
2020-09-03 06:17:12 +08:00
<?php xhtmlFooter() ?>