87 lines
3.6 KiB
PHP
87 lines
3.6 KiB
PHP
<?php
|
|
//
|
|
// ZoneMinder web run state 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('System') ) return;
|
|
|
|
$running = daemonCheck();
|
|
|
|
$content = '';
|
|
if ( $running ) {
|
|
$content .= '<option value="stop" selected="selected">' .translate('Stop'). '</option>'.PHP_EOL;
|
|
$content .= '<option value="restart">' .translate('Restart'). '</option>'.PHP_EOL;
|
|
} else {
|
|
$content .= '<option value="start" selected="selected">' .translate('Start'). '</option>'.PHP_EOL;
|
|
}
|
|
|
|
$states = dbFetchAll('SELECT * FROM States');
|
|
foreach ( $states as $state ) {
|
|
$selected = $state['IsActive'] ? 'selected="selected"' : '';
|
|
|
|
$content .= '<option value="' .validHtmlStr($state["Name"]). '" ' .$selected. '>'.PHP_EOL;
|
|
$content .= validHtmlStr($state['Name']).PHP_EOL;
|
|
$content .= '</option>'.PHP_EOL;
|
|
}
|
|
|
|
?>
|
|
<div id="modalState" class="modal fade" tabindex="-1">
|
|
<div class="modal-dialog modal-dialog-centered">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title">Run State</h5>
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<form class="" name="contentForm" method="get" action="?view=state">
|
|
<?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="view" value="state"/>
|
|
<input type="hidden" name="action" value="state"/>
|
|
<input type="hidden" name="apply" value="1"/>
|
|
<div class="form-group">
|
|
<label for="runState" class="col-md-3 col-form-label float-left">Change State</label>
|
|
<div class="col-md-9">
|
|
<select id="runState" name="runState" class="form-control">
|
|
<?php echo $content ?>
|
|
</select>
|
|
</div><!--col-md-9-->
|
|
</div><!--form-group-->
|
|
<div class="form-group">
|
|
<label for="newState" class="col-md-3 col-form-label float-left"><?php echo translate('NewState') ?></label>
|
|
<div class="col-md-9">
|
|
<input class="form-control" type="text" id="newState"/>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button class="btn btn-primary" type="button" id="btnApply"><?php echo translate('Apply') ?></button>
|
|
<button class="btn btn-primary" type="button" id="btnSave" disabled><?php echo translate('Save') ?></button>
|
|
<button class="btn btn-danger" type="button" id="btnDelete" disabled><?php echo translate('Delete') ?></button>
|
|
<p class="pull-left hidden" id="pleasewait"><?php echo translate('PleaseWait') ?></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|