2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
//
|
|
|
|
// ZoneMinder web monitor preset 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
|
2016-12-26 23:23:16 +08:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2008-07-14 21:54:50 +08:00
|
|
|
//
|
|
|
|
|
|
|
|
if ( !canEdit( 'Monitors' ) )
|
|
|
|
{
|
2008-09-26 17:47:20 +08:00
|
|
|
$view = "error";
|
2008-07-14 21:54:50 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
$sql = "select Id,Name from MonitorPresets";
|
|
|
|
$presets = array();
|
2015-05-10 21:10:30 +08:00
|
|
|
$presets[0] = translate('ChoosePreset');
|
2008-07-14 21:54:50 +08:00
|
|
|
foreach( dbFetchAll( $sql ) as $preset )
|
|
|
|
{
|
|
|
|
$presets[$preset['Id']] = htmlentities( $preset['Name'] );
|
|
|
|
}
|
|
|
|
|
|
|
|
$focusWindow = true;
|
|
|
|
|
2015-05-10 21:10:30 +08:00
|
|
|
xhtmlHeaders(__FILE__, translate('MonitorPreset') );
|
2008-07-14 21:54:50 +08:00
|
|
|
?>
|
|
|
|
<body>
|
2020-09-26 03:49:14 +08:00
|
|
|
<?php echo getNavBarHTML() ?>
|
2008-07-14 21:54:50 +08:00
|
|
|
<div id="page">
|
2015-05-10 21:10:30 +08:00
|
|
|
<h2><?php echo translate('MonitorPreset') ?></h2>
|
2008-07-14 21:54:50 +08:00
|
|
|
<div id="content">
|
2020-10-04 10:30:48 +08:00
|
|
|
<form name="contentForm" id="monitorPresetForm" method="post" action="?">
|
2008-07-14 21:54:50 +08:00
|
|
|
<input type="hidden" name="view" value="none"/>
|
2014-12-05 07:44:23 +08:00
|
|
|
<input type="hidden" name="mid" value="<?php echo validNum($_REQUEST['mid']) ?>"/>
|
2008-07-14 21:54:50 +08:00
|
|
|
<p>
|
2015-05-10 21:10:30 +08:00
|
|
|
<?php echo translate('MonitorPresetIntro') ?>
|
2008-07-14 21:54:50 +08:00
|
|
|
</p>
|
|
|
|
<p>
|
2020-10-04 10:30:48 +08:00
|
|
|
<label for="preset"><?php echo translate('Preset') ?></label><?php echo buildSelect( "preset", $presets ); ?>
|
2008-07-14 21:54:50 +08:00
|
|
|
</p>
|
|
|
|
<div id="contentButtons">
|
2019-01-16 22:59:58 +08:00
|
|
|
<input type="submit" name="saveBtn" value="<?php echo translate('Save') ?>" data-on-click-this="submitPreset" disabled="disabled"/>
|
|
|
|
<input type="button" value="<?php echo translate('Cancel') ?>" data-on-click="closeWindow"/>
|
2008-07-14 21:54:50 +08:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-09-03 05:35:13 +08:00
|
|
|
<?php xhtmlFooter() ?>
|