module_main.htm
4.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
<title>模块打包</title>
<link href="css/base.css" rel="stylesheet" type="text/css" />
<script src="../include/dedeajax2.js" language="javascript" type="text/javascript"></script>
<script language="javascript" type="text/javascript">
function getmodule(action,hash)
{
$DE('status_'+hash).innerHTML='<img src=\'images/loadinglit.gif\'>';
var myajax = new DedeAjax($DE('status_'+hash),false,true,'-','-','...');
myajax.SendGet2('module_main.php?action=download&hash='+hash);
$DE('manager_'+hash).style.display = 'block';
DedeXHTTP = null;
}
</script>
</head>
<body background='images/allbg.gif' leftmargin='8' topmargin='8'>
<div class="bodytitle">
<div class="bodytitleleft"></div>
<div class="bodytitletxt" style="padding-left:10px;">模块管理</div>
</div>
<table width="98%" border="0" cellpadding="1" cellspacing="1" align="center" class="tbtitle" style="background:#CFCFCF;">
<form name="form1" action="plus_add.php" method="post">
<input type='hidden' name='dopost' value='save'>
<tr>
<td height="25" colspan="7" bgcolor="#EDF9D5" background="images/tbg.gif" style="padding-left:10px;">
<div style='float:left'><a href='module_main.php'><b>模块管理</b></a> > <b>模块列表:</b></div>
<div style='float:right;padding-right:8px;'>
<a href='module_main.php'>全部</a> |
<a href='module_main.php?moduletype=soft'>模块</a> |
<a href='module_main.php?moduletype=templets'>模板</a> |
<a href='module_main.php?moduletype=plus'>小插件</a> |
<a href='module_main.php?moduletype=patch'>补丁</a>
</div>
</td>
</tr>
<tr bgcolor="#FBFCE2" >
<td align="center" width="16%">模块名称</td>
<td align="center" width="12%">发布时间</td>
<td align="center" width="14%">开发团队</td>
<td align="center" width="10%">编码</td>
<td align="center" width="10%">类型</td>
<td align="center" width="12%">模块状态</td>
<td align="center" width="26%">管理</td>
</tr>
<?php
if(count($modules)>0)
foreach($modules as $k=>$v)
{
?>
<tr bgcolor="#FFFFFF" height="26" align="center" onMouseMove="javascript:this.bgColor='#FCFDEE';" onMouseOut="javascript:this.bgColor='#FFFFFF';">
<td><?php echo $v['name']; ?></td>
<td><?php echo $v['time']; ?></td>
<td><?php echo $v['team']; ?></td>
<td>
<?php
if($cfg_soft_lang != $v['lang']) echo "<font color='red'>".$v['lang']."</font>";
else echo $v['lang'];
?>
</td>
<td><?php echo $types[$v['moduletype']];?></td>
<td>
<?php
$file = DEDEDATA."/module/{$v['hash']}.xml";
if(file_exists($file)) {
if(file_exists(DEDEDATA."/module/{$v['hash']}-readme.php")){
echo "<font color='green'>已安装</font> <a style='color:green' href='module_main.php?action=uninstall&hash={$v['hash']}'><u>卸载</u></a>";
}else{
echo "未安装 <a href='module_main.php?action=setup&hash={$v['hash']}'><u>安装</u></a>";
}
}else{
echo "<div id=\"status_{$v['hash']}\"><font color='red'>未下载</font> <a style='color:red' href=\"javascript:getmodule('download','{$v['hash']}')\"><u>下载</u></a></div>";
}
?>
</td>
<td>
<div id = 'manager_<?php echo $v['hash']; ?>' <?php if(!file_exists(DEDEDATA."/module/{$v['hash']}.xml")) echo 'style="display:none;"'?>>
<a href='module_main.php?action=showreadme&hash=<?php echo $v['hash']; ?>'>使用说明</a>
|
<a href='module_main.php?action=view&hash=<?php echo $v['hash']; ?>'>详细</a>
|
<a href='module_main.php?action=edit&hash=<?php echo $v['hash']; ?>'>修改</a>
|
<a href='module_main.php?action=del&hash=<?php echo $v['hash']; ?>'>删除</a>
</div>
</td>
</tr>
<?php
}
?>
<tr>
<td colspan="7" align="center" bgcolor='#F9FCEF'> </td>
</tr>
</form>
</table>
</body>
</html>