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

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

60 lines
2.1 KiB
PHP
Raw Normal View History

<?php
//
// ZoneMinder web monitor preset 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.
//
if ( !canEdit( 'Monitors' ) )
{
$view = "error";
return;
}
$sql = "select Id,Name from MonitorPresets";
$presets = array();
2015-05-10 21:10:30 +08:00
$presets[0] = translate('ChoosePreset');
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') );
?>
<body>
2020-09-26 03:49:14 +08:00
<?php echo getNavBarHTML() ?>
<div id="page">
2015-05-10 21:10:30 +08:00
<h2><?php echo translate('MonitorPreset') ?></h2>
<div id="content">
2020-10-04 10:30:48 +08:00
<form name="contentForm" id="monitorPresetForm" method="post" action="?">
<input type="hidden" name="view" value="none"/>
<input type="hidden" name="mid" value="<?php echo validNum($_REQUEST['mid']) ?>"/>
<p>
2015-05-10 21:10:30 +08:00
<?php echo translate('MonitorPresetIntro') ?>
</p>
<p>
2020-10-04 10:30:48 +08:00
<label for="preset"><?php echo translate('Preset') ?></label><?php echo buildSelect( "preset", $presets ); ?>
</p>
<div id="contentButtons">
<input type="submit" name="saveBtn" value="<?php echo translate('Save') ?>" data-on-click-this="submitPreset" disabled="disabled"/>
2021-01-09 02:40:26 +08:00
<input type="button" value="<?php echo translate('Cancel') ?>" data-on-click="backWindow"/>
</div>
</form>
</div>
</div>
<?php xhtmlFooter() ?>