2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
//
|
|
|
|
// ZoneMinder web options view file, $Date$, $Revision$
|
2008-07-25 17:48:16 +08:00
|
|
|
// Copyright (C) 2001-2008 Philip Coombes
|
2008-07-14 21:54:50 +08:00
|
|
|
//
|
|
|
|
// 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
//
|
|
|
|
|
|
|
|
if ( !canView( 'System' ) )
|
|
|
|
{
|
2008-09-26 17:47:20 +08:00
|
|
|
$view = "error";
|
2008-07-14 21:54:50 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-10-09 17:15:53 +08:00
|
|
|
$canEdit = canEdit( 'System' );
|
|
|
|
|
2008-07-14 21:54:50 +08:00
|
|
|
$tabs = array();
|
2015-05-22 01:23:31 +08:00
|
|
|
$tabs['skins'] = translate('Display');
|
2015-05-10 21:10:30 +08:00
|
|
|
$tabs['system'] = translate('System');
|
|
|
|
$tabs['config'] = translate('Config');
|
2015-07-09 23:41:46 +08:00
|
|
|
$tabs['servers'] = translate('Servers');
|
2015-05-10 21:10:30 +08:00
|
|
|
$tabs['paths'] = translate('Paths');
|
|
|
|
$tabs['web'] = translate('Web');
|
|
|
|
$tabs['images'] = translate('Images');
|
|
|
|
$tabs['logging'] = translate('Logging');
|
|
|
|
$tabs['network'] = translate('Network');
|
|
|
|
$tabs['mail'] = translate('Email');
|
|
|
|
$tabs['upload'] = translate('Upload');
|
|
|
|
$tabs['x10'] = translate('X10');
|
|
|
|
$tabs['highband'] = translate('HighBW');
|
|
|
|
$tabs['medband'] = translate('MediumBW');
|
|
|
|
$tabs['lowband'] = translate('LowBW');
|
|
|
|
$tabs['users'] = translate('Users');
|
2008-07-14 21:54:50 +08:00
|
|
|
|
2008-09-26 17:47:20 +08:00
|
|
|
if ( isset($_REQUEST['tab']) )
|
|
|
|
$tab = validHtmlStr($_REQUEST['tab']);
|
|
|
|
else
|
|
|
|
$tab = "system";
|
2008-07-14 21:54:50 +08:00
|
|
|
|
|
|
|
$focusWindow = true;
|
|
|
|
|
2015-05-10 21:10:30 +08:00
|
|
|
xhtmlHeaders( __FILE__, translate('Options') );
|
2016-03-24 04:12:51 +08:00
|
|
|
|
|
|
|
# Have to do this stuff up here before including header.php because fof the cookie setting
|
|
|
|
$skin_options = array_map( 'basename', glob('skins/*',GLOB_ONLYDIR) );
|
|
|
|
if($tab == 'skins') {
|
|
|
|
$current_skin = $_COOKIE['zmSkin'];
|
|
|
|
$reload = false;
|
|
|
|
if ( isset($_GET['skin-choice']) && ( $_GET['skin-choice'] != $current_skin ) ) {
|
|
|
|
setcookie('zmSkin',$_GET['skin-choice'], time()+3600*24*30*12*10 );
|
|
|
|
//header("Location: index.php?view=options&tab=skins&reset_parent=1");
|
|
|
|
$reload = true;
|
|
|
|
}
|
|
|
|
$current_css = $_COOKIE['zmCSS'];
|
|
|
|
Error("Current css $current_css");
|
|
|
|
if ( isset($_GET['css-choice']) and ( $_GET['css-choice'] != $current_css ) ) {
|
|
|
|
Error("setting css $current_css to " . $_GET['css-choice']);
|
|
|
|
setcookie('zmCSS',$_GET['css-choice'], time()+3600*24*30*12*10 );
|
|
|
|
//header("Location: index.php?view=options&tab=skins&reset_parent=1");
|
|
|
|
$reload = true;
|
|
|
|
}
|
|
|
|
if ( $reload )
|
|
|
|
echo "<script type=\"text/javascript\">if(window.opener){window.opener.location.reload();}window.location.href=\"{$_SERVER['PHP_SELF']}?view={$view}&tab={$tab}\"</script>";
|
|
|
|
} # end if tab == skins
|
|
|
|
|
2008-07-14 21:54:50 +08:00
|
|
|
?>
|
|
|
|
<body>
|
2016-03-16 01:43:49 +08:00
|
|
|
|
|
|
|
<?php include("skins/$skin/views/header.php") ?>
|
|
|
|
|
2016-03-16 01:56:54 +08:00
|
|
|
<div class="container-fluid">
|
2016-04-02 02:02:19 +08:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-2 sidebar">
|
|
|
|
<ul class="nav nav-pills nav-stacked">
|
2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
foreach ( $tabs as $name=>$value )
|
|
|
|
{
|
|
|
|
?>
|
2016-03-24 03:54:20 +08:00
|
|
|
<li<?php echo $tab == $name ? ' class="active"' : '' ?>><a href="?view=<?php echo $view ?>&tab=<?php echo $name ?>"><?php echo $value ?></a></li>
|
2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</ul>
|
2016-04-02 02:02:19 +08:00
|
|
|
</div>
|
2016-03-16 03:21:28 +08:00
|
|
|
|
2016-04-02 02:02:19 +08:00
|
|
|
<div class="col-sm-10 col-sm-offset-2">
|
|
|
|
<div id="options">
|
2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
2010-11-24 09:35:12 +08:00
|
|
|
if($tab == 'skins') {
|
|
|
|
?>
|
2016-03-16 02:43:22 +08:00
|
|
|
<form name="optionsForm" class="form-horizontal" method="get" action="<?php echo $_SERVER['PHP_SELF'] ?>">
|
2014-12-05 07:44:23 +08:00
|
|
|
<input type="hidden" name="view" value="<?php echo $view ?>"/>
|
|
|
|
<input type="hidden" name="tab" value="<?php echo $tab ?>"/>
|
2016-03-16 02:43:22 +08:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="skin-choice" class="col-sm-3 control-label">ZM_SKIN</label>
|
|
|
|
<div class="col-sm-6">
|
|
|
|
<select name="skin-choice" class="form-control">
|
2014-11-27 00:55:53 +08:00
|
|
|
<?php
|
2014-12-18 22:34:14 +08:00
|
|
|
foreach($skin_options as $dir) {
|
2014-12-02 04:58:00 +08:00
|
|
|
echo '<option value="'.$dir.'" '.($current_skin==$dir ? 'SELECTED="SELECTED"' : '').'>'.$dir.'</option>';
|
2014-11-27 00:55:53 +08:00
|
|
|
}
|
|
|
|
?>
|
2016-03-16 02:43:22 +08:00
|
|
|
</select>
|
|
|
|
<span class="help-block"><?php echo translate('SkinDescription'); ?></span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="css-choice" class="col-sm-3 control-label">ZM_CSS</label>
|
|
|
|
<div class="col-sm-6">
|
|
|
|
<select name="css-choice" class="form-control">
|
2014-11-27 00:55:53 +08:00
|
|
|
<?php
|
2014-12-18 22:44:04 +08:00
|
|
|
foreach( array_map( 'basename', glob('skins/'.$current_skin.'/css/*',GLOB_ONLYDIR) ) as $dir) {
|
2014-12-02 04:58:00 +08:00
|
|
|
echo '<option value="'.$dir.'" '.($current_css==$dir ? 'SELECTED="SELECTED"' : '').'>'.$dir.'</option>';
|
2014-11-27 00:55:53 +08:00
|
|
|
}
|
|
|
|
?>
|
2016-03-16 02:43:22 +08:00
|
|
|
</select>
|
|
|
|
<span class="help-block"><?php echo translate('CSSDescription'); ?></span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2010-11-24 09:35:12 +08:00
|
|
|
<div id="contentButtons">
|
2016-03-16 02:08:01 +08:00
|
|
|
<input type="submit" class="btn btn-primary btn-lg" value="<?php echo translate('Save') ?>"<?php echo $canEdit?'':' disabled="disabled"' ?>/>
|
2010-11-24 09:35:12 +08:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
elseif ( $tab == "users" )
|
2008-07-14 21:54:50 +08:00
|
|
|
{
|
|
|
|
?>
|
2014-12-05 07:44:23 +08:00
|
|
|
<form name="userForm" method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>">
|
|
|
|
<input type="hidden" name="view" value="<?php echo $view ?>"/>
|
|
|
|
<input type="hidden" name="tab" value="<?php echo $tab ?>"/>
|
2008-07-14 21:54:50 +08:00
|
|
|
<input type="hidden" name="action" value="delete"/>
|
2016-03-13 11:44:11 +08:00
|
|
|
<table id="contentTable" class="table table-striped" cellspacing="0">
|
2008-07-14 21:54:50 +08:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2015-05-10 21:10:30 +08:00
|
|
|
<th class="colUsername"><?php echo translate('Username') ?></th>
|
|
|
|
<th class="colLanguage"><?php echo translate('Language') ?></th>
|
|
|
|
<th class="colEnabled"><?php echo translate('Enabled') ?></th>
|
|
|
|
<th class="colStream"><?php echo translate('Stream') ?></th>
|
|
|
|
<th class="colEvents"><?php echo translate('Events') ?></th>
|
|
|
|
<th class="colControl"><?php echo translate('Control') ?></th>
|
|
|
|
<th class="colMonitors"><?php echo translate('Monitors') ?></th>
|
2015-08-16 01:24:48 +08:00
|
|
|
<th class="colGroups"><?php echo translate('Groups') ?></th>
|
2015-05-10 21:10:30 +08:00
|
|
|
<th class="colSystem"><?php echo translate('System') ?></th>
|
|
|
|
<th class="colBandwidth"><?php echo translate('Bandwidth') ?></th>
|
|
|
|
<th class="colMonitor"><?php echo translate('Monitor') ?></th>
|
|
|
|
<th class="colMark"><?php echo translate('Mark') ?></th>
|
2008-07-14 21:54:50 +08:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<?php
|
|
|
|
$sql = "select * from Monitors order by Sequence asc";
|
|
|
|
$monitors = array();
|
|
|
|
foreach( dbFetchAll( $sql ) as $monitor )
|
|
|
|
{
|
|
|
|
$monitors[$monitor['Id']] = $monitor;
|
|
|
|
}
|
|
|
|
|
|
|
|
$sql = "select * from Users";
|
|
|
|
foreach( dbFetchAll( $sql ) as $row )
|
|
|
|
{
|
|
|
|
$userMonitors = array();
|
|
|
|
if ( !empty($row['MonitorIds']) )
|
|
|
|
{
|
2010-02-16 01:11:37 +08:00
|
|
|
foreach ( explode( ",", $row['MonitorIds'] ) as $monitorId )
|
2008-07-14 21:54:50 +08:00
|
|
|
{
|
|
|
|
$userMonitors[] = $monitors[$monitorId]['Name'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<tr>
|
2014-12-05 07:44:23 +08:00
|
|
|
<td class="colUsername"><?php echo makePopupLink( '?view=user&uid='.$row['Id'], 'zmUser', 'user', validHtmlStr($row['Username']).($user['Username']==$row['Username']?"*":""), $canEdit ) ?></td>
|
|
|
|
<td class="colLanguage"><?php echo $row['Language']?validHtmlStr($row['Language']):'default' ?></td>
|
2015-05-10 21:10:30 +08:00
|
|
|
<td class="colEnabled"><?php echo $row['Enabled']?translate('Yes'):translate('No') ?></td>
|
2014-12-05 07:44:23 +08:00
|
|
|
<td class="colStream"><?php echo validHtmlStr($row['Stream']) ?></td>
|
|
|
|
<td class="colEvents"><?php echo validHtmlStr($row['Events']) ?></td>
|
|
|
|
<td class="colControl"><?php echo validHtmlStr($row['Control']) ?></td>
|
|
|
|
<td class="colMonitors"><?php echo validHtmlStr($row['Monitors']) ?></td>
|
2015-08-16 01:37:25 +08:00
|
|
|
<td class="colGroups"><?php echo validHtmlStr($row['Groups']) ?></td>
|
2014-12-05 07:44:23 +08:00
|
|
|
<td class="colSystem"><?php echo validHtmlStr($row['System']) ?></td>
|
|
|
|
<td class="colBandwidth"><?php echo $row['MaxBandwidth']?$bwArray[$row['MaxBandwidth']]:' ' ?></td>
|
|
|
|
<td class="colMonitor"><?php echo $row['MonitorIds']?(join( ", ", $userMonitors )):" " ?></td>
|
|
|
|
<td class="colMark"><input type="checkbox" name="markUids[]" value="<?php echo $row['Id'] ?>" onclick="configureDeleteButton( this );"<?php if ( !$canEdit ) { ?> disabled="disabled"<?php } ?>/></td>
|
2008-07-14 21:54:50 +08:00
|
|
|
</tr>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<div id="contentButtons">
|
2016-03-16 02:08:01 +08:00
|
|
|
<input type="button" class="btn btn-primary btn-lg" value="<?php echo translate('AddNewUser') ?>" onclick="createPopup( '?view=user&uid=0', 'zmUser', 'user' );"<?php if ( !canEdit( 'System' ) ) { ?> disabled="disabled"<?php } ?>/>
|
|
|
|
<input type="submit" class="btn btn-danger btn-lg" name="deleteBtn" value="<?php echo translate('Delete') ?>" disabled="disabled"/>
|
2008-07-14 21:54:50 +08:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<?php
|
2015-07-09 23:41:46 +08:00
|
|
|
} else if ( $tab == "servers" ) { ?>
|
|
|
|
<form name="serversForm" method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>">
|
|
|
|
<input type="hidden" name="view" value="<?php echo $view ?>"/>
|
|
|
|
<input type="hidden" name="tab" value="<?php echo $tab ?>"/>
|
|
|
|
<input type="hidden" name="action" value="delete"/>
|
|
|
|
<input type="hidden" name="object" value="server"/>
|
2016-03-13 11:44:11 +08:00
|
|
|
<table id="contentTable" class="table table-striped" cellspacing="0">
|
2015-07-09 23:41:46 +08:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th class="colName"><?php echo translate('name') ?></th>
|
2016-01-08 23:15:06 +08:00
|
|
|
<th class="colHostname"><?php echo translate('Hostname') ?></th>
|
2015-07-09 23:41:46 +08:00
|
|
|
<th class="colMark"><?php echo translate('Mark') ?></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<?php foreach( dbFetchAll( 'SELECT * FROM Servers' ) as $row ) { ?>
|
|
|
|
<tr>
|
2015-08-17 00:22:31 +08:00
|
|
|
<td class="colName"><?php echo makePopupLink( '?view=server&id='.$row['Id'], 'zmServer', 'server', validHtmlStr($row['Name']), $canEdit ) ?></td>
|
2016-01-08 23:15:06 +08:00
|
|
|
<td class="colHostname"><?php echo makePopupLink( '?view=server&id='.$row['Id'], 'zmServer', 'server', validHtmlStr($row['Hostname']), $canEdit ) ?></td>
|
2015-07-09 23:41:46 +08:00
|
|
|
<td class="colMark"><input type="checkbox" name="markIds[]" value="<?php echo $row['Id'] ?>" onclick="configureDeleteButton( this );"<?php if ( !$canEdit ) { ?> disabled="disabled"<?php } ?>/></td>
|
|
|
|
</tr>
|
|
|
|
<?php } #end foreach Server ?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<div id="contentButtons">
|
2016-03-16 02:08:01 +08:00
|
|
|
<input type="button" class="btn btn-primary btn-lg" value="<?php echo translate('AddNewServer') ?>" onclick="createPopup( '?view=server&id=0', 'zmServer', 'server' );"<?php if ( !canEdit( 'System' ) ) { ?> disabled="disabled"<?php } ?>/>
|
|
|
|
<input type="submit" class="btn btn-danger btn-lg" name="deleteBtn" value="<?php echo translate('Delete') ?>" disabled="disabled"/>
|
2015-07-09 23:41:46 +08:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<?php
|
2014-12-18 22:34:14 +08:00
|
|
|
} else {
|
|
|
|
if ( $tab == "system" ) {
|
2008-09-26 17:47:20 +08:00
|
|
|
$configCats[$tab]['ZM_LANG_DEFAULT']['Hint'] = join( '|', getLanguages() );
|
2014-12-18 22:34:14 +08:00
|
|
|
$configCats[$tab]['ZM_SKIN_DEFAULT']['Hint'] = join( '|', $skin_options );
|
2014-12-18 22:44:04 +08:00
|
|
|
$configCats[$tab]['ZM_CSS_DEFAULT']['Hint'] = join( '|', array_map ( 'basename', glob('skins/'.ZM_SKIN_DEFAULT.'/css/*',GLOB_ONLYDIR) ) );
|
2014-12-18 22:34:14 +08:00
|
|
|
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
|
|
|
?>
|
2016-03-16 02:43:22 +08:00
|
|
|
<form name="optionsForm" class="form-horizontal" method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>">
|
2014-12-05 07:44:23 +08:00
|
|
|
<input type="hidden" name="view" value="<?php echo $view ?>"/>
|
|
|
|
<input type="hidden" name="tab" value="<?php echo $tab ?>"/>
|
2008-07-14 21:54:50 +08:00
|
|
|
<input type="hidden" name="action" value="options"/>
|
|
|
|
<?php
|
2008-09-26 17:47:20 +08:00
|
|
|
$configCat = $configCats[$tab];
|
2008-07-14 21:54:50 +08:00
|
|
|
foreach ( $configCat as $name=>$value )
|
|
|
|
{
|
2009-02-19 22:17:33 +08:00
|
|
|
$shortName = preg_replace( '/^ZM_/', '', $name );
|
2014-05-17 10:33:33 +08:00
|
|
|
$optionPromptText = !empty($OLANG[$shortName])?$OLANG[$shortName]['Prompt']:$value['Prompt'];
|
2008-07-14 21:54:50 +08:00
|
|
|
?>
|
2016-03-16 02:43:22 +08:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="<?php echo $name ?>" class="col-sm-3 control-label"><?php echo $shortName ?></label>
|
|
|
|
<div class="col-sm-6">
|
2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
if ( $value['Type'] == "boolean" )
|
|
|
|
{
|
|
|
|
?>
|
2016-03-16 02:43:22 +08:00
|
|
|
<input type="checkbox" id="<?php echo $name ?>" name="newConfig[<?php echo $name ?>]" value="1"<?php if ( $value['Value'] ) { ?> checked="checked"<?php } ?><?php echo $canEdit?'':' disabled="disabled"' ?>/>
|
2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
elseif ( preg_match( "/\|/", $value['Hint'] ) )
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<?php
|
2010-02-16 01:11:37 +08:00
|
|
|
$options = explode( '|', $value['Hint'] );
|
2008-07-14 21:54:50 +08:00
|
|
|
if ( count( $options ) > 3 )
|
|
|
|
{
|
|
|
|
?>
|
2016-03-16 02:43:22 +08:00
|
|
|
<select class="form-control" name="newConfig[<?php echo $name ?>]"<?php echo $canEdit?'':' disabled="disabled"' ?>>
|
2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
foreach ( $options as $option )
|
|
|
|
{
|
2011-06-21 17:19:10 +08:00
|
|
|
if ( preg_match( '/^([^=]+)=(.+)$/', $option, $matches ) )
|
|
|
|
{
|
|
|
|
$optionLabel = $matches[1];
|
|
|
|
$optionValue = $matches[2];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$optionLabel = $optionValue = $option;
|
|
|
|
}
|
2008-07-14 21:54:50 +08:00
|
|
|
?>
|
2014-12-05 07:44:23 +08:00
|
|
|
<option value="<?php echo $optionValue ?>"<?php if ( $value['Value'] == $optionValue ) { echo ' selected="selected"'; } ?>><?php echo htmlspecialchars($optionLabel) ?></option>
|
2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
foreach ( $options as $option )
|
|
|
|
{
|
2011-06-21 17:19:10 +08:00
|
|
|
if ( preg_match( '/^([^=]+)=(.+)$/', $option ) )
|
|
|
|
{
|
|
|
|
$optionLabel = $matches[1];
|
|
|
|
$optionValue = $matches[2];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$optionLabel = $optionValue = $option;
|
|
|
|
}
|
2008-07-14 21:54:50 +08:00
|
|
|
?>
|
2016-03-16 02:43:22 +08:00
|
|
|
<label>
|
|
|
|
<input type="radio" id="<?php echo $name.'_'.preg_replace( '/[^a-zA-Z0-9]/', '', $optionValue ) ?>" name="newConfig[<?php echo $name ?>]" value="<?php echo $optionValue ?>"<?php if ( $value['Value'] == $optionValue ) { ?> checked="checked"<?php } ?><?php echo $canEdit?'':' disabled="disabled"' ?>/>
|
|
|
|
<?php echo htmlspecialchars($optionLabel) ?>
|
|
|
|
</label>
|
2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
elseif ( $value['Type'] == "text" )
|
|
|
|
{
|
|
|
|
?>
|
2016-03-16 02:43:22 +08:00
|
|
|
<textarea class="form-control" id="<?php echo $name ?>" name="newConfig[<?php echo $name ?>]" rows="5" cols="40"<?php echo $canEdit?'':' disabled="disabled"' ?>><?php echo validHtmlStr($value['Value']) ?></textarea>
|
2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
elseif ( $value['Type'] == "integer" )
|
|
|
|
{
|
|
|
|
?>
|
2016-03-16 02:43:22 +08:00
|
|
|
<input type="number" class="form-control" id="<?php echo $name ?>" name="newConfig[<?php echo $name ?>]" value="<?php echo validHtmlStr($value['Value']) ?>" class="small"<?php echo $canEdit?'':' disabled="disabled"' ?>/>
|
2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
elseif ( $value['Type'] == "hexadecimal" )
|
|
|
|
{
|
|
|
|
?>
|
2016-03-16 02:43:22 +08:00
|
|
|
<input type="text" class="form-control" id="<?php echo $name ?>" name="newConfig[<?php echo $name ?>]" value="<?php echo validHtmlStr($value['Value']) ?>" class="medium"<?php echo $canEdit?'':' disabled="disabled"' ?>/>
|
2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
elseif ( $value['Type'] == "decimal" )
|
|
|
|
{
|
|
|
|
?>
|
2016-03-16 02:43:22 +08:00
|
|
|
<input type="text" class="form-control" id="<?php echo $name ?>" name="newConfig[<?php echo $name ?>]" value="<?php echo validHtmlStr($value['Value']) ?>" class="small"<?php echo $canEdit?'':' disabled="disabled"' ?>/>
|
2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
?>
|
2016-03-16 02:43:22 +08:00
|
|
|
<input type="text" class="form-control" id="<?php echo $name ?>" name="newConfig[<?php echo $name ?>]" value="<?php echo validHtmlStr($value['Value']) ?>" class="large"<?php echo $canEdit?'':' disabled="disabled"' ?>/>
|
2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
2016-03-16 02:43:22 +08:00
|
|
|
<span class="help-block"><?php echo validHtmlStr($optionPromptText) ?> (<?php echo makePopupLink( '?view=optionhelp&option='.$name, 'zmOptionHelp', 'optionhelp', '?' ) ?>)</span>
|
|
|
|
</div><!-- End .col-sm-9 -->
|
|
|
|
</div><!-- End .form-group -->
|
2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<div id="contentButtons">
|
2016-03-16 02:08:01 +08:00
|
|
|
<input type="submit" class="btn btn-primary btn-lg" value="<?php echo translate('Save') ?>"<?php echo $canEdit?'':' disabled="disabled"' ?>/>
|
2008-07-14 21:54:50 +08:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
2016-03-16 03:21:28 +08:00
|
|
|
|
|
|
|
</div><!-- end #options -->
|
2016-04-02 02:02:19 +08:00
|
|
|
</div>
|
|
|
|
</div> <!-- end row -->
|
2008-07-14 21:54:50 +08:00
|
|
|
</div>
|
2016-05-04 01:33:22 +08:00
|
|
|
<?php include("skins/$skin/views/state.php") ?>
|
2008-07-14 21:54:50 +08:00
|
|
|
</body>
|
|
|
|
</html>
|