mirror of
https://github.com/LyLme/lylme_spage.git
synced 2024-11-17 14:34:08 +08:00
优化描述
This commit is contained in:
parent
1b8ad6a364
commit
1b451ec797
@ -28,7 +28,7 @@ if ($set == 'add') {
|
||||
<div class="form-group">
|
||||
<label>*网站名称:</label><br>
|
||||
<input type="text" class="form-control" placeholder="网站名称" name="name" value="" required>
|
||||
<input type="text" class="coloris form-control" onchange="select_color()" placeholder="链接颜色" name="color" value="" />
|
||||
<input type="text" class="coloris form-control" onchange="select_color()" placeholder="链接颜色(留空默认)" name="color" value="" />
|
||||
</div>
|
||||
<div class="input-group">
|
||||
<label>链接图标:</label><br>
|
||||
@ -77,7 +77,7 @@ if ($set == 'add') {
|
||||
<div class="form-group">
|
||||
<label>*网站名称:</label><br>
|
||||
<input type="text" class="form-control" name="name" id="urlname" value="' . strip_tags($row['name']) . '" required>
|
||||
<input type="text" class="coloris form-control" onchange="select_color()" placeholder="留空默认" name="color" value="'.$color[1][0].'" />
|
||||
<input type="text" class="coloris form-control" onchange="select_color()" placeholder="链接颜色(留空默认)" name="color" value="' . $color[1][0] . '" />
|
||||
</div>
|
||||
<div class="input-group">
|
||||
<label>链接图标:</label><br>
|
||||
@ -115,7 +115,9 @@ if ($set == 'add') {
|
||||
}
|
||||
echo '<option value="' . $pwd_list["pwd_id"] . '" ' . $sel . ' >' . $pwd_list["pwd_id"] . ' - ' . $pwd_list["pwd_name"] . ' | 密码[' . $pwd_list["pwd_key"] . ']</option>';
|
||||
}
|
||||
if(empty($row['link_pwd'])) $sele = 'selected="selected"';
|
||||
if(empty($row['link_pwd'])) {
|
||||
$sele = 'selected="selected"';
|
||||
}
|
||||
echo '
|
||||
<option value="0" ' . $sele . '>0 - 不加密</option></select>
|
||||
<small class="help-block"><code>注意:对链接所在的分组加密后,单独设置的链接加密将会失效</code><br>
|
||||
@ -140,19 +142,23 @@ if ($set == 'add') {
|
||||
$icon = $_POST['icon'];
|
||||
$group_id = $_POST['group_id'];
|
||||
$link_order = $linksrows + 1;
|
||||
if ($name == NULL or $url == NULL) {
|
||||
if ($name == null or $url == null) {
|
||||
echo '<script>alert("保存错误,请确保带星号的都不为空!");history.go(-1);</script>';
|
||||
} else {
|
||||
$sql = "INSERT INTO `lylme_links` (`id`, `name`, `group_id`, `url`, `icon`, `PS`,`link_order`) VALUES (NULL, '" . $name1 . "', '" . $group_id . "', '" . $url . "', '" . $icon . "', '" . $name . "', '" . $link_order . "');";
|
||||
if ($DB->query($sql)) {
|
||||
echo '<script>alert("添加链接 ' . $name . ' 成功!");window.location.href="./link.php";</script>';
|
||||
} else echo '<script>alert("添加链接失败!");history.go(-1);</script>';
|
||||
} else {
|
||||
echo '<script>alert("添加链接失败!");history.go(-1);</script>';
|
||||
}
|
||||
}
|
||||
} elseif ($set == 'edit_submit') {
|
||||
$id = $_GET['id'];
|
||||
$rows2 = $DB->query("select * from lylme_links where id='$id' limit 1");
|
||||
$rows = $DB->fetch($rows2);
|
||||
if (!$rows) exit('<script>alert("当前记录不存在!");history.go(-1);</script>');
|
||||
if (!$rows) {
|
||||
exit('<script>alert("当前记录不存在!");history.go(-1);</script>');
|
||||
}
|
||||
$color = $_POST['color'];
|
||||
$name = $_POST['name'];
|
||||
if(empty($color)) {
|
||||
@ -164,12 +170,16 @@ if ($set == 'add') {
|
||||
$icon = $_POST['icon'];
|
||||
$link_pwd = $_POST['link_pwd'];
|
||||
$group_id = $_POST['group_id'];
|
||||
if ($name == NULL or $url == NULL) {
|
||||
if ($name == null or $url == null) {
|
||||
echo '<script>alert("保存错误,请确保带星号的都不为空!");history.go(-1);</script>';
|
||||
} else {
|
||||
$sql = "UPDATE `lylme_links` SET `name` = '" . $name1 . "', `url` = '" . $url . "', `icon` = '" . $icon . "', `group_id` = '" . $group_id . "', `link_pwd` = " . $link_pwd . " WHERE `lylme_links`.`id` = '" . $id . "';";
|
||||
// exit($sql);
|
||||
if ($DB->query($sql)) echo '<script>alert("修改链接 ' . $name . ' 成功!");window.location.href="./link.php";</script>'; else echo '<script>alert("修改链接失败!");history.go(-1);</script>';
|
||||
if ($DB->query($sql)) {
|
||||
echo '<script>alert("修改链接 ' . $name . ' 成功!");window.location.href="./link.php";</script>';
|
||||
} else {
|
||||
echo '<script>alert("修改链接失败!");history.go(-1);</script>';
|
||||
}
|
||||
}
|
||||
// } elseif ($set == 'delete') {
|
||||
// $id = $_GET['id'];
|
||||
@ -215,8 +225,10 @@ function select_color() {
|
||||
<script type="text/javascript">
|
||||
//分组移动
|
||||
var mv_group ='<form action="" class="formName">' + '<select class="form-control group_id" required><option value="">请选择分组...</option>'+'<?php while ($grouplist = $DB->fetch($grouplists)) {
|
||||
echo '<option value="' . $grouplist["group_id"] . '">' . $grouplist["group_id"] . ' - ' . $grouplist["group_name"] . '</option>';}?>'+ '</select>';
|
||||
echo '<option value="' . $grouplist["group_id"] . '">' . $grouplist["group_id"] . ' - ' . $grouplist["group_name"] . '</option>';
|
||||
}?>'+ '</select>';
|
||||
//链接加密
|
||||
var pwd_list = '<form action="" class="formName">' + '<select class="form-control pwd_id" required>'+'<?php while ($pwd_list = $DB->fetch($pwd_lists)) {
|
||||
echo '<option value="' . $pwd_list["pwd_id"] . '">' . $pwd_list["pwd_id"] . ' - ' . $pwd_list["pwd_name"] . '</option>';}?>'+ '<option value="0">0 - 取消加密</option></select><br><a href="./pwd.php" target="_blank">管理加密组</a>';
|
||||
echo '<option value="' . $pwd_list["pwd_id"] . '">' . $pwd_list["pwd_id"] . ' - ' . $pwd_list["pwd_name"] . '</option>';
|
||||
}?>'+ '<option value="0">0 - 取消加密</option></select><br><a href="./pwd.php" target="_blank">管理加密组</a>';
|
||||
</script>
|
@ -76,7 +76,7 @@ CREATE TABLE `lylme_groups` (
|
||||
DROP TABLE IF EXISTS `lylme_links`;
|
||||
CREATE TABLE `lylme_links` (
|
||||
`id` int(4) NOT NULL COMMENT '网站ID',
|
||||
`name` varchar(20) NOT NULL COMMENT '链接标题',
|
||||
`name` varchar(255) NOT NULL COMMENT '链接标题',
|
||||
`group_id` int(2) NOT NULL DEFAULT '1' COMMENT '分组名称',
|
||||
`url` varchar(255) NOT NULL COMMENT '链接地址',
|
||||
`icon` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT '链接图标',
|
||||
|
Loading…
Reference in New Issue
Block a user