parent
ef5b17deed
commit
607de01535
|
@ -237,6 +237,30 @@ if (isset($_GET['recycle_reimg'])) {
|
||||||
|
|
||||||
header("refresh:1;url=/admin/admin.inc.php");
|
header("refresh:1;url=/admin/admin.inc.php");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 删除版本信息文件
|
||||||
|
if (isset($_POST['del_version_file'])) {
|
||||||
|
try {
|
||||||
|
unlink(APP_ROOT . $_POST['del_version_file']);
|
||||||
|
echo "
|
||||||
|
<script>
|
||||||
|
new $.zui.Messager('删除成功', {
|
||||||
|
type: 'success', // 定义颜色主题
|
||||||
|
icon: 'ok'
|
||||||
|
}).show();
|
||||||
|
</script>
|
||||||
|
";
|
||||||
|
} catch (Exception $e) {
|
||||||
|
echo "
|
||||||
|
<script>
|
||||||
|
new $.zui.Messager('删除失败: '" . $e->getMessage() . ", {
|
||||||
|
type: 'danger', // 定义颜色主题
|
||||||
|
icon: 'ok'
|
||||||
|
}).show();
|
||||||
|
</script>
|
||||||
|
";
|
||||||
|
}
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<?php echo $config['set_notice']; ?>
|
<?php echo $config['set_notice']; ?>
|
||||||
|
@ -874,7 +898,11 @@ if (isset($_GET['recycle_reimg'])) {
|
||||||
<hr />
|
<hr />
|
||||||
<p>更新日期: <?php echo getVersion('created_at'); ?></p>
|
<p>更新日期: <?php echo getVersion('created_at'); ?></p>
|
||||||
<p>更新内容: <br /><?php echo getVersion('body'); ?></p>
|
<p>更新内容: <br /><?php echo getVersion('body'); ?></p>
|
||||||
<h6>更新后删除 <small style="color: black;">/admin/logs/verson/</small> 文件夹会自动同步最新版本号</h6>
|
<h6>* 更新后点击更新版本号</h6>
|
||||||
|
<form action="<?php $_SERVER['SCRIPT_NAME']; ?>" method="post">
|
||||||
|
<input class="form-control" type="hidden" name="del_version_file" value="/admin/logs/version/version.json" readonly="">
|
||||||
|
<button class="btn btn-mini btn-danger">更新版本号</button>
|
||||||
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -167,3 +167,14 @@ if ($config['checkImg'] !== 0) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!function_exists('fastcgi_finish_request')) {
|
||||||
|
echo '
|
||||||
|
<script>
|
||||||
|
new $.zui.Messager("开启 fastcgi_finish_request 处理数据会更快喔!",{
|
||||||
|
type: "primary", // 定义颜色主题
|
||||||
|
time:7000
|
||||||
|
}).show();
|
||||||
|
</script>
|
||||||
|
';
|
||||||
|
}
|
||||||
|
|
|
@ -32,22 +32,30 @@ file_put_contents(APP_ROOT . '/config/install.lock', '安装程序锁定文件
|
||||||
// 删除安装目录
|
// 删除安装目录
|
||||||
if (isset($_POST['del_install'])) {
|
if (isset($_POST['del_install'])) {
|
||||||
if ($_POST['del_install'] == "del") {
|
if ($_POST['del_install'] == "del") {
|
||||||
deldir(APP_ROOT . "/install");
|
try {
|
||||||
|
@deldir(APP_ROOT . "/install");
|
||||||
|
} catch (Exception $e) {
|
||||||
|
echo $e->getMessage();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 删除多余文件.whitesource
|
// 删除多余文件.whitesource
|
||||||
if (isset($_POST['del_extra_files'])) {
|
if (isset($_POST['del_extra_files'])) {
|
||||||
if ($_POST['del_extra_files'] == "del") {
|
if ($_POST['del_extra_files'] == "del") {
|
||||||
@unlink(APP_ROOT . '/LICENSE');
|
try {
|
||||||
@unlink(APP_ROOT . '/README.md');
|
@unlink(APP_ROOT . '/LICENSE');
|
||||||
@deldir(APP_ROOT . "/admin/logs");
|
@unlink(APP_ROOT . '/README.md');
|
||||||
@deldir(APP_ROOT . "/SECURITY.md");
|
@deldir(APP_ROOT . "/admin/logs");
|
||||||
@unlink(APP_ROOT . '/.whitesource');
|
@deldir(APP_ROOT . "/SECURITY.md");
|
||||||
@unlink(APP_ROOT . '/CODE_OF_CONDUCT.md');
|
@unlink(APP_ROOT . '/.whitesource');
|
||||||
@unlink(APP_ROOT . '/config/EasyIamge.lock');
|
@unlink(APP_ROOT . '/CODE_OF_CONDUCT.md');
|
||||||
@deldir(APP_ROOT . "/.github");
|
@unlink(APP_ROOT . '/config/EasyIamge.lock');
|
||||||
@deldir(APP_ROOT . "/.git");
|
@deldir(APP_ROOT . "/.github");
|
||||||
|
@deldir(APP_ROOT . "/.git");
|
||||||
|
} catch (Exception $e) {
|
||||||
|
echo $e->getMessage();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue