2013-05-02 22:20:06 +08:00
|
|
|
<?php
|
|
|
|
//
|
|
|
|
// ZoneMinder web function 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
|
2016-12-26 23:23:16 +08:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2013-05-02 22:20:06 +08:00
|
|
|
//
|
|
|
|
|
2016-10-12 00:11:59 +08:00
|
|
|
if ( !canEdit( 'Monitors' ) ) {
|
2017-10-06 04:11:54 +08:00
|
|
|
$view = 'error';
|
|
|
|
return;
|
2013-05-02 22:20:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
$monitor = dbFetchMonitor( $_REQUEST['mid'] );
|
|
|
|
|
|
|
|
$focusWindow = true;
|
|
|
|
|
2015-05-10 21:10:30 +08:00
|
|
|
xhtmlHeaders(__FILE__, translate('Function')." - ".validHtmlStr($monitor['Name']) );
|
2013-05-02 22:20:06 +08:00
|
|
|
?>
|
|
|
|
<body>
|
|
|
|
<div id="page">
|
|
|
|
<div id="header">
|
2015-05-10 21:10:30 +08:00
|
|
|
<h2><?php echo translate('Function')." - ".validHtmlStr($monitor['Name']) ?></h2>
|
2013-05-02 22:20:06 +08:00
|
|
|
</div>
|
|
|
|
<div id="content">
|
2014-12-05 07:44:23 +08:00
|
|
|
<form name="contentForm" id="contentForm" method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>">
|
2013-05-02 22:20:06 +08:00
|
|
|
<input type="hidden" name="view" value="none"/>
|
|
|
|
<input type="hidden" name="action" value="function"/>
|
2014-12-05 07:44:23 +08:00
|
|
|
<input type="hidden" name="mid" value="<?php echo $monitor['Id'] ?>"/>
|
2013-05-02 22:20:06 +08:00
|
|
|
<p>
|
|
|
|
<select name="newFunction">
|
|
|
|
<?php
|
2016-10-12 00:11:59 +08:00
|
|
|
foreach ( getEnumValues( 'Monitors', 'Function' ) as $optFunction ) {
|
2013-05-02 22:20:06 +08:00
|
|
|
?>
|
2015-05-22 01:23:31 +08:00
|
|
|
<option value="<?php echo $optFunction ?>"<?php if ( $optFunction == $monitor['Function'] ) { ?> selected="selected"<?php } ?>><?php echo translate('Fn'.$optFunction) ?></option>
|
2013-05-02 22:20:06 +08:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
2015-05-10 21:10:30 +08:00
|
|
|
<label for="newEnabled"><?php echo translate('Enabled') ?></label><input type="checkbox" name="newEnabled" id="newEnabled" value="1"<?php if ( !empty($monitor['Enabled']) ) { ?> checked="checked"<?php } ?>/>
|
2013-05-02 22:20:06 +08:00
|
|
|
</p>
|
|
|
|
<div id="contentButtons">
|
2015-05-10 21:10:30 +08:00
|
|
|
<input type="submit" value="<?php echo translate('Save') ?>"/>
|
|
|
|
<input type="button" value="<?php echo translate('Cancel') ?>" onclick="closeWindow()"/>
|
2013-05-02 22:20:06 +08:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|