2022-05-21 03:39:37 +08:00
|
|
|
<?php
|
|
|
|
include_once("../include/common.php");
|
|
|
|
if(isset($islogin)==1) {
|
|
|
|
} else exit("<script language='javascript'>window.location.href='./login.php';</script>");
|
|
|
|
|
|
|
|
echo '<div class="alert alert-info">系统共有 <b>' . $groupsrows . '</b> 个分组<br/><a href="./group.php?set=add" class="btn btn-primary">新建分组</a></div>
|
|
|
|
<div class="table-responsive">
|
|
|
|
<table class="table table-striped">
|
|
|
|
<thead><tr><th>名称</th><th>排序</th><th>链接数</th><th>访问密码</th><th>操作</th></tr></thead>
|
|
|
|
<tbody>';
|
|
|
|
|
|
|
|
$sql = " 1";
|
|
|
|
$rs = $DB->query("SELECT * FROM lylme_groups WHERE{$sql} order by group_order asc");
|
|
|
|
while ($res = $DB->fetch($rs)) {
|
|
|
|
$pwd = $DB->get_row("SELECT `pwd_id`, `pwd_key` FROM `lylme_pwd` WHERE `pwd_id` = ".$res['group_pwd'])['pwd_key'];
|
|
|
|
echo '<tr><td><input type="hidden" name="group_id" value="'.$res['group_id'].'">' . $res['group_name'] . '</td><td>
|
|
|
|
<button class="btn btn-primary btn-xs sort-up">上移</button> <button class="btn btn-cyan btn-xs sort-down">下移</button></td>
|
|
|
|
<td>'. $DB->num_rows($DB->query("SELECT `id` FROM `lylme_links` WHERE `group_id` =".$res['group_id'])).'</td>
|
|
|
|
|
|
|
|
<td>';
|
2022-05-21 19:26:27 +08:00
|
|
|
if($pwd||$res['group_pwd']){
|
|
|
|
if(empty($pwd)){
|
2022-05-21 19:46:42 +08:00
|
|
|
echo '<font color="red">失效[请重新设置加密组]</font>';
|
2022-05-21 19:26:27 +08:00
|
|
|
}
|
|
|
|
else{
|
2022-05-21 03:39:37 +08:00
|
|
|
echo '<font color="f96197">'.$pwd.'</font>';
|
2022-05-21 19:26:27 +08:00
|
|
|
}
|
2022-05-21 03:39:37 +08:00
|
|
|
}
|
|
|
|
else{echo '<font color="green">未加密</font>';}
|
|
|
|
echo ' </td>
|
|
|
|
<td> <a href="./group.php?set=edit&id=' . $res['group_id'] . '" class="btn btn-info btn-xs">编辑</a> <button class="btn btn-xs btn-danger" onclick="del_group('.$res['group_id'].')">删除</button></td></tr>';
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|