plugins.html
2.8 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
<include file="public@header"/>
</head>
<body>
<div class="wrap js-check-wrap">
<form action="{:url('hook/pluginListOrder')}" method="post" class="js-ajax-form">
<php>
$types = ["1"=>'系统钩子','2'=>'应用钩子','3'=>'模板钩子','4'=>'后台模板钩子'];
$status=array("1"=>'开启',"0"=>'禁用',"3"=>'未安装');
</php>
<div class="table-actions">
<button type="submit" class="btn btn-primary btn-sm js-ajax-submit">{:lang('SORT')}</button>
</div>
<table class="table table-hover table-bordered">
<thead>
<tr>
<th width="50">排序</th>
<th>插件名称</th>
<th>插件标识</th>
<th>钩子</th>
<th>描述</th>
<th>作者</th>
<th width="60">状态</th>
<th width="150">{:lang('ACTIONS')}</th>
</tr>
</thead>
<tbody>
<foreach name="plugins" item="vo">
<tr>
<td><input name="list_orders[{$vo.hook_plugin_id}]" type="text" size="3" value="{$vo.list_order}"
class="input input-order"></td>
<td>{$vo.title}</td>
<td>{$vo.name}</td>
<td>{$vo.hooks|default=''}</td>
<td>{$vo.description}</td>
<td>{$vo.author}</td>
<td>{$status[$vo['hook_plugin_status']]}</td>
<td>
<if condition="$vo['status']==3">
<a href="{:url('plugin/install',array('name'=>$vo['name']))}" class="js-ajax-dialog-btn"
data-msg="确定安装该插件吗?">安装</a>
<else/>
<php>$config=json_decode($vo['config'],true);</php>
<if condition="!empty($config)">
<a href="{:url('plugin/setting',array('id'=>$vo['id']))}">设置</a> |
<else/>
<a href="javascript:;" style="color: #ccc;">设置</a> |
</if>
<if condition="!empty($vo['has_admin'])">
<a href="javascript:parent.openapp('{:cmf_plugin_url($vo['name'].'://AdminIndex/index')}','plugin_{$vo.name}','{$vo.title}')">管理</a>|
<else/>
<a href="javascript:;" style="color: #ccc;">管理</a>
</if>
</if>
</td>
</tr>
</foreach>
</tbody>
</table>
</form>
</div>
<script src="__STATIC__/js/admin.js"></script>
</body>
</html>