blessing-skin-server/resources/views/admin/options.tpl

270 lines
15 KiB
PHP
Raw Normal View History

2016-07-22 19:36:24 +08:00
@extends('admin.master')
2016-09-25 10:02:40 +08:00
@section('title', trans('general.options'))
2016-07-22 19:36:24 +08:00
@section('style')
<style type="text/css">
2016-07-29 11:52:45 +08:00
.box-body > textarea { height: 200px; }
2016-08-11 12:47:02 +08:00
.description { margin: 7px 0 0 0; color: #555; }
2016-07-22 19:36:24 +08:00
</style>
@endsection
@section('content')
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
2016-09-25 10:02:40 +08:00
{{ trans('general.options') }}
2016-07-22 19:36:24 +08:00
<small>Options</small>
</h1>
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-md-6">
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">常规选项</h3>
</div><!-- /.box-header -->
2016-09-10 17:02:47 +08:00
<form method="post">
2016-07-22 19:36:24 +08:00
<input type="hidden" name="option" value="general">
<div class="box-body">
<?php
if (isset($_POST['option']) && ($_POST['option'] == "general")) {
2016-09-25 14:21:51 +08:00
// pre-set some options because they will not be posted if not checked
$presets = [
'user_can_register',
'allow_chinese_playername',
'auto_del_invalid_texture'
];
foreach ($presets as $key) {
$_POST[$key] = isset($_POST[$key]) ? $_POST[$key] : "0";
}
2016-07-22 19:36:24 +08:00
foreach ($_POST as $key => $value) {
// remove slash if site_url is ended with slash
if ($key == "site_url" && substr($value, -1) == "/")
$value = substr($value, 0, -1);
if ($key != "option" && $key != "submit")
Option::set($key, $value);
}
echo '<div class="callout callout-success">设置已保存。</div>';
} ?>
<table class="table">
<tbody>
<tr>
<td class="key">站点标题</td>
<td class="value">
2016-09-15 23:03:58 +08:00
<input type="text" class="form-control" name="site_name" value="{{ option('site_name') }}">
2016-07-22 19:36:24 +08:00
</td>
</tr>
<tr>
<td class="key">站点描述</td>
<td class="value">
2016-09-15 23:03:58 +08:00
<input type="text" class="form-control" name="site_description" value="{{ option('site_description') }}">
2016-07-22 19:36:24 +08:00
</td>
</tr>
2016-08-13 21:41:53 +08:00
<tr title="以 http(s):// 开头,不要以 / 结尾" data-toggle="tooltip" data-placement="top">
2016-07-22 19:36:24 +08:00
<td class="key">站点地址URL</td>
<td class="value">
2016-09-15 23:03:58 +08:00
<input type="text" class="form-control" name="site_url" value="{{ option('site_url') }}">
2016-07-22 19:36:24 +08:00
</td>
</tr>
<tr>
<td class="key">开放注册</td>
<td class="value">
<label for="user_can_register">
<input {{ option('user_can_register') ? 'checked="true"' : '' }} type="checkbox" id="user_can_register" name="user_can_register" value="1"> 任何人都可以注册
2016-07-22 19:36:24 +08:00
</label>
</td>
</tr>
<tr>
<td class="key">每个 IP 限制注册数</td>
<td class="value">
2016-09-15 23:03:58 +08:00
<input type="text" class="form-control" name="regs_per_ip" value="{{ option('regs_per_ip') }}">
2016-07-22 19:36:24 +08:00
</td>
</tr>
<tr>
<td class="key">最大允许上传大小
<i class="fa fa-question-circle" title="PHP 限制:{{ ini_get('post_max_size') }},定义在 php.ini 中。" data-toggle="tooltip" data-placement="top"></i>
</td>
<td class="value">
<div class="input-group">
<input type="text" class="form-control" name="max_upload_file_size" value="{{ option('max_upload_file_size') }}">
<span class="input-group-addon">KB</span>
</div>
</td>
</tr>
2016-07-22 19:36:24 +08:00
<tr>
<td class="key">角色名</td>
<td class="value">
<label for="allow_chinese_playername">
<input {{ option('allow_chinese_playername') ? 'checked="true"' : '' }} type="checkbox" id="allow_chinese_playername" name="allow_chinese_playername" value="1"> 允许中文角色名
2016-07-22 19:36:24 +08:00
</label>
</td>
</tr>
<tr>
<td class="key">首选 JSON API</td>
<td class="value">
2016-08-09 13:18:27 +08:00
<select class="form-control" name="api_type">
2016-09-15 23:03:58 +08:00
<option {{ (option('api_type') == '0') ? 'selected="selected"' : '' }} value="0">CustomSkinLoader API</option>
<option {{ (option('api_type') == '1') ? 'selected="selected"' : '' }} value="1">UniversalSkinAPI</option>
2016-08-09 13:18:27 +08:00
</select>
</td>
</tr>
<tr>
<td class="key">失效材质
<i class="fa fa-question-circle" title="自动从皮肤库中删除文件不存在的材质记录" data-toggle="tooltip" data-placement="top"></i>
</td>
<td class="value">
<label for="auto_del_invalid_texture">
<input {{ option('auto_del_invalid_texture') ? 'checked="true"' : '' }} type="checkbox" id="auto_del_invalid_texture" name="auto_del_invalid_texture" value="1"> 自动删除失效材质
</label>
</td>
</tr>
<tr>
<td class="key">评论代码
<i class="fa fa-question-circle" title="就是 Disqus多说畅言等评论服务提供的代码。留空以停用评论功能" data-toggle="tooltip" data-placement="top"></i>
</td>
2016-07-22 19:36:24 +08:00
<td class="value">
2016-09-15 23:03:58 +08:00
<textarea class="form-control" rows="6" name="comment_script">{{ option('comment_script') }}</textarea>
2016-08-11 12:47:02 +08:00
<p class="description">评论代码内可使用占位符,<code>{tid}</code> 将会被自动替换为材质的 id<code>{name}</code> 会被替换为材质名称,<code>{url}</code> 会被替换为当前页面地址。</p>
2016-07-22 19:36:24 +08:00
</td>
</tr>
</tbody>
</table>
</div><!-- /.box-body -->
<div class="box-footer">
<button type="submit" name="submit" class="btn btn-primary">提交</button>
</div>
</form>
</div>
</div>
<div class="col-md-6">
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">站点公告</h3>
</div><!-- /.box-header -->
2016-09-10 17:02:47 +08:00
<form method="post">
2016-07-22 19:36:24 +08:00
<input type="hidden" name="option" value="announcement">
<div class="box-body">
<?php
if (isset($_POST['option']) && ($_POST['option'] == "announcement")) {
Option::set('announcement', $_POST['announcement']);
echo '<div class="callout callout-success">设置已保存。</div>';
} ?>
2016-09-15 23:03:58 +08:00
<textarea name="announcement" class="form-control" rows="3">{{ option('announcement') }}</textarea>
2016-08-11 12:47:02 +08:00
<p class="description">站点公告内容不会被转义,因此您可以使用 HTML 进行排版</p>
2016-07-22 19:36:24 +08:00
</div><!-- /.box-body -->
<div class="box-footer">
<button type="submit" name="submit" class="btn btn-primary">提交</button>
</div>
</form>
</div>
2016-09-25 14:21:51 +08:00
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">缓存相关配置
<i class="fa fa-question-circle" title="如果启用了 CDN 缓存请适当修改这些配置" data-toggle="tooltip" data-placement="top"></i>
</h3>
</div><!-- /.box-header -->
<form method="post">
<input type="hidden" name="option" value="cache">
<div class="box-body">
<?php
if (isset($_POST['option']) && ($_POST['option'] == "cache")) {
// pre-set some options because they will not be posted if not checked
$presets = [
'avatar_query_string',
'return_200_when_notfound',
'auto_detect_asset_url'
2016-09-25 14:21:51 +08:00
];
foreach ($presets as $key) {
$_POST[$key] = isset($_POST[$key]) ? $_POST[$key] : "0";
}
foreach ($_POST as $key => $value) {
// remove slash if site_url is ended with slash
if ($key == "site_url" && substr($value, -1) == "/")
$value = substr($value, 0, -1);
if ($key != "option" && $key != "submit")
Option::set($key, $value);
}
echo '<div class="callout callout-success">设置已保存。</div>';
} ?>
<table class="table">
<tbody>
<tr>
<td class="key">头像缓存</td>
<td class="value">
<label for="avatar_query_string">
<input {{ option('avatar_query_string') ? 'checked="true"' : '' }} type="checkbox" id="avatar_query_string" name="avatar_query_string" value="1"> 为头像添加 Query String
2016-09-25 14:21:51 +08:00
</label>
</td>
</tr>
<tr>
<td class="key">资源地址
<i class="fa fa-question-circle" title="根据当前 URL 自动加载资源文件。如果出现 CDN 回源问题请关闭" data-toggle="tooltip" data-placement="top"></i>
</td>
<td class="value">
<label for="auto_detect_asset_url">
<input {{ option('auto_detect_asset_url') ? 'checked="true"' : '' }} type="checkbox" id="auto_detect_asset_url" name="auto_detect_asset_url" value="1"> 自动判断资源文件地址
</label>
</td>
</tr>
2016-09-25 14:21:51 +08:00
<tr>
<td class="key">HTTP 响应码</td>
<td class="value">
<label for="return_200_when_notfound">
<input {{ option('return_200_when_notfound') ? 'checked="true"' : '' }} type="checkbox" id="return_200_when_notfound" name="return_200_when_notfound" value="1"> 请求不存在的角色时返回 200 而不是 404
2016-09-25 14:21:51 +08:00
</label>
</td>
</tr>
<tr>
<td class="key">缓存失效时间
<i class="fa fa-question-circle" title="秒数86400 = 一天31536000 = 一年" data-toggle="tooltip" data-placement="top"></i>
</td>
<td class="value">
<input type="text" class="form-control" name="cache_expire_time" value="{{ option('cache_expire_time') }}">
</td>
</tr>
</tbody>
</table>
</div><!-- /.box-body -->
<div class="box-footer">
<button type="submit" name="submit" class="btn btn-primary">提交</button>
</div>
</form>
</div>
2016-07-22 19:36:24 +08:00
</div>
</div>
</section><!-- /.content -->
</div><!-- /.content-wrapper -->
@endsection