You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
2.2 KiB
PHTML
43 lines
2.2 KiB
PHTML
1 year ago
|
<?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><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>';
|
||
|
if($pwd||$res['group_pwd']){
|
||
|
if(empty($pwd)){
|
||
|
echo '<font color="red">失效[请重新设置加密组]</font>';
|
||
|
}
|
||
|
else{
|
||
|
echo '<font color="f96197">'.$pwd.'</font>';
|
||
|
}
|
||
|
}
|
||
|
else{echo '<font color="green">未加密</font>';}
|
||
|
echo ' </td><td>';
|
||
|
|
||
|
if($res['group_status']){
|
||
|
echo '<button class="btn btn-pink btn-xs" onclick="off_group('.$res['group_id'].')">禁用</button>';
|
||
|
}else{
|
||
|
echo '<button class="btn btn-success btn-xs" onclick="on_group('.$res['group_id'].')">启用</button>';
|
||
|
}
|
||
|
|
||
|
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>
|