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

114 lines
4.4 KiB
PHP
Raw Normal View History

2015-12-16 03:08:34 +08:00
<?php
//
// ZoneMinder web user 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.
2015-12-16 03:08:34 +08:00
//
2019-05-31 23:00:30 +08:00
if ( !canEdit('System') ) {
$view = 'error';
return;
2015-12-16 03:08:34 +08:00
}
if ( $_REQUEST['id'] ) {
if ( !($newStorage = dbFetchOne('SELECT * FROM Storage WHERE Id=?', NULL, ARRAY($_REQUEST['id'])) ) ) {
$view = 'error';
return;
$newStorage['ServerId'] = '';
}
2015-12-16 03:08:34 +08:00
} else {
$newStorage = array();
$newStorage['Name'] = translate('NewStorage');
$newStorage['Path'] = '';
2017-10-16 23:31:05 +08:00
$newStorage['Type'] = 'local';
2018-03-28 23:23:36 +08:00
$newStorage['Url'] = '';
$newStorage['Scheme'] = 'Medium';
$newStorage['StorageId'] = '';
$newStorage['ServerId'] = '';
$newStorage['DoDelete'] = 1;
2015-12-16 03:08:34 +08:00
}
2017-10-16 23:31:05 +08:00
$type_options = array( 'local' => translate('Local'), 's3fs' => translate('s3fs') );
$scheme_options = array(
'Deep' => translate('Deep'),
'Medium' => translate('Medium'),
'Shallow' => translate('Shallow'),
);
2017-10-16 23:31:05 +08:00
$servers = ZM\Server::find( null, array('order'=>'lower(Name)') );
2017-12-23 03:39:43 +08:00
$ServersById = array();
foreach ( $servers as $S ) {
$ServersById[$S->Id()] = $S;
}
2015-12-16 03:08:34 +08:00
$focusWindow = true;
2019-05-31 23:00:30 +08:00
xhtmlHeaders(__FILE__, translate('Storage').' - '.$newStorage['Name']);
2015-12-16 03:08:34 +08:00
?>
<body>
<div id="page">
<div id="header">
2019-05-31 23:00:30 +08:00
<h2><?php echo translate('Storage').' - '.$newStorage['Name'] ?></h2>
2015-12-16 03:08:34 +08:00
</div>
<div id="content">
<form name="contentForm" method="post" action="?" class="validateFormOnSubmit">
2015-12-16 03:08:34 +08:00
<input type="hidden" name="view" value="<?php echo $view ?>"/>
<input type="hidden" name="object" value="storage"/>
<input type="hidden" name="id" value="<?php echo validHtmlStr($_REQUEST['id']) ?>"/>
2017-10-16 23:31:05 +08:00
<table id="contentTable" class="major">
2015-12-16 03:08:34 +08:00
<tbody>
<tr>
<th scope="row"><?php echo translate('Name') ?></th>
2015-12-16 03:08:34 +08:00
<td><input type="text" name="newStorage[Name]" value="<?php echo $newStorage['Name'] ?>"/></td>
</tr>
<tr>
<th scope="row"><?php echo translate('Path') ?></th>
<td><input type="text" name="newStorage[Path]" value="<?php echo $newStorage['Path'] ?>"/></td>
2015-12-16 03:08:34 +08:00
</tr>
2017-12-23 03:39:43 +08:00
<tr>
2018-03-28 23:23:36 +08:00
<th scope="row"><?php echo translate('Url') ?></th>
<td><input type="text" name="newStorage[Url]" value="<?php echo $newStorage['Url'] ?>"/></td>
</tr>
2017-12-23 03:39:43 +08:00
<tr>
<th scope="row"><?php echo translate('Server') ?></th>
2019-11-02 01:41:37 +08:00
<td><?php echo htmlSelect('newStorage[ServerId]', array(''=>'Remote / No Specific Server') + $ServersById, $newStorage['ServerId']); ?></td>
2017-12-23 03:39:43 +08:00
</tr>
2017-10-16 23:31:05 +08:00
<tr>
<th scope="row"><?php echo translate('Type') ?></th>
2019-11-02 01:41:37 +08:00
<td><?php echo htmlSelect('newStorage[Type]', $type_options, $newStorage['Type']); ?></td>
2017-10-16 23:31:05 +08:00
</tr>
<tr>
<th scope="row"><?php echo translate('StorageScheme') ?></th>
2019-11-02 01:41:37 +08:00
<td><?php echo htmlSelect('newStorage[Scheme]', $scheme_options, $newStorage['Scheme']); ?></td>
</tr>
<tr>
<th scope="row"><?php echo translate('StorageDoDelete') ?></th>
<td>
<input type="radio" name="newStorage[DoDelete]" value="1"<?php echo $newStorage['DoDelete'] ? 'checked="checked"' : '' ?>/>Yes
<input type="radio" name="newStorage[DoDelete]" value="0"<?php echo $newStorage['DoDelete'] ? '' : 'checked="checked"' ?>/>No
</td>
</tr>
2015-12-16 03:08:34 +08:00
</tbody>
</table>
<div id="contentButtons">
<button name="action" type="submit" value="Save"><?php echo translate('Save') ?></button>
<button type="button" data-on-click="closeWindow"><?php echo translate('Cancel') ?></button>
2015-12-16 03:08:34 +08:00
</div>
</form>
</div>
</div>
</body>
</html>