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
|
|
|
//
|
|
|
|
|
2020-09-19 23:18:59 +08:00
|
|
|
if ( !canEdit('Monitors') ) return;
|
2020-08-27 00:39:48 +08:00
|
|
|
|
2020-09-19 23:18:59 +08:00
|
|
|
?>
|
2020-09-04 06:24:09 +08:00
|
|
|
<div id="modalFunction" class="modal" tabindex="-1">
|
2020-08-27 00:39:48 +08:00
|
|
|
<div class="modal-dialog">
|
|
|
|
<div class="modal-content">
|
2020-09-19 23:18:59 +08:00
|
|
|
<form id="function_form" action="?view=function&action=function" method="post">
|
|
|
|
<?php
|
|
|
|
// We have to manually insert the csrf key into the form when using a modal generated via ajax call
|
|
|
|
echo getCSRFinputHTML();
|
|
|
|
?>
|
|
|
|
<input type="hidden" name="mid"/>
|
2020-08-27 00:39:48 +08:00
|
|
|
<div class="modal-header">
|
2020-09-04 06:24:09 +08:00
|
|
|
<h5 class="modal-title"><?php echo translate('Function') ?> - <span id="function_monitor_name"></span></h5>
|
2020-08-27 00:39:48 +08:00
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
|
<span aria-hidden="true">×</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
2020-12-11 02:43:16 +08:00
|
|
|
<div class="form-group" id="FunctionFunction">
|
|
|
|
<label for="newFunction"><?php echo translate('Function') ?></label>
|
2020-09-04 06:24:09 +08:00
|
|
|
<?php echo htmlSelect('newFunction', ZM\getMonitorFunctionTypes(), null, array('id'=>'newFunction')); ?>
|
2020-12-11 02:43:16 +08:00
|
|
|
<div id="function_help">
|
|
|
|
<?php
|
|
|
|
foreach ( ZM\getMonitorFunctionTypes() as $fn => $translated ) {
|
|
|
|
if ( isset($OLANG['FUNCTION_'.strtoupper($fn)]) ) {
|
|
|
|
echo '<div class="form-text" id="'.$fn.'Help">'.$OLANG['FUNCTION_'.strtoupper($fn)]['Help'].'</div>';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-12-11 03:06:40 +08:00
|
|
|
<div class="form-group" id="FunctionAnalysisEnabled">
|
2020-12-11 02:43:16 +08:00
|
|
|
<label for="newEnabled"><?php echo translate('Analysis Enabled') ?></label>
|
2020-09-04 06:24:09 +08:00
|
|
|
<input type="checkbox" name="newEnabled" id="newEnabled" value="1"/>
|
2020-12-11 02:43:16 +08:00
|
|
|
<?php
|
|
|
|
if ( isset($OLANG['FUNCTION_ANALYSIS_ENABLED']) ) {
|
|
|
|
echo '<div class="form-text">'.$OLANG['FUNCTION_ANALYSIS_ENABLED']['Help'].'</div>';
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
2020-12-11 03:06:40 +08:00
|
|
|
</div>
|
|
|
|
<div class="form-group" id="FunctionDecodingEnabled">
|
|
|
|
<label for="newDecodingEnabled"><?php echo translate('Decoding Enabled') ?></label>
|
|
|
|
<input type="checkbox" name="newDecodingEnabled" id="newDecodingEnabled" value="1"/>
|
|
|
|
<?php
|
|
|
|
if ( isset($OLANG['FUNCTION_DECODING_ENABLED']) ) {
|
|
|
|
echo '<div class="form-text">'.$OLANG['FUNCTION_DECODING_ENABLED']['Help'].'</div>';
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
2022-01-11 13:22:37 +08:00
|
|
|
</div>
|
|
|
|
<div class="form-group" id="FunctionJanusEnabled">
|
|
|
|
<label for="newJanusEnabled"><?php echo translate('Janus Enabled') ?></label>
|
|
|
|
<input type="checkbox" name="newJanusEnabled" id="newJanusEnabled" value="1"/>
|
|
|
|
<?php
|
|
|
|
if ( isset($OLANG['FUNCTION_JANUS_ENABLED']) ) {
|
|
|
|
echo '<div class="form-text">'.$OLANG['FUNCTION_JANUS_ENABLED']['Help'].'</div>';
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
2020-12-11 02:43:16 +08:00
|
|
|
</div>
|
2020-08-27 00:39:48 +08:00
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
2020-09-04 06:24:09 +08:00
|
|
|
<button type="button" class="funcSaveBtn btn btn-primary"><?php echo translate('Save') ?></button>
|
|
|
|
<button type="button" class="funcCancelBtn btn btn-secondary" data-dismiss="modal"><?php echo translate('Cancel') ?></button>
|
2020-08-27 00:39:48 +08:00
|
|
|
</div>
|
2020-09-19 23:18:59 +08:00
|
|
|
</form>
|
2013-05-02 22:20:06 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-08-27 00:39:48 +08:00
|
|
|
</div>
|