plugins.html 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <include file="public@header"/>
  2. </head>
  3. <body>
  4. <div class="wrap js-check-wrap">
  5. <form action="{:url('hook/pluginListOrder')}" method="post" class="js-ajax-form">
  6. <php>
  7. $types = ["1"=>'系统钩子','2'=>'应用钩子','3'=>'模板钩子','4'=>'后台模板钩子'];
  8. $status=array("1"=>'开启',"0"=>'禁用',"3"=>'未安装');
  9. </php>
  10. <div class="table-actions">
  11. <button type="submit" class="btn btn-primary btn-sm js-ajax-submit">{:lang('SORT')}</button>
  12. </div>
  13. <table class="table table-hover table-bordered">
  14. <thead>
  15. <tr>
  16. <th width="50">排序</th>
  17. <th>插件名称</th>
  18. <th>插件标识</th>
  19. <th>钩子</th>
  20. <th>描述</th>
  21. <th>作者</th>
  22. <th width="60">状态</th>
  23. <th width="150">{:lang('ACTIONS')}</th>
  24. </tr>
  25. </thead>
  26. <tbody>
  27. <foreach name="plugins" item="vo">
  28. <tr>
  29. <td><input name="list_orders[{$vo.hook_plugin_id}]" type="text" size="3" value="{$vo.list_order}"
  30. class="input input-order"></td>
  31. <td>{$vo.title}</td>
  32. <td>{$vo.name}</td>
  33. <td>{$vo.hooks|default=''}</td>
  34. <td>{$vo.description}</td>
  35. <td>{$vo.author}</td>
  36. <td>{$status[$vo['hook_plugin_status']]}</td>
  37. <td>
  38. <if condition="$vo['status']==3">
  39. <a href="{:url('plugin/install',array('name'=>$vo['name']))}" class="btn btn-xs btn-primary js-ajax-dialog-btn"
  40. data-msg="确定安装该插件吗?">安装</a>
  41. <else/>
  42. <php>$config=json_decode($vo['config'],true);</php>
  43. <if condition="!empty($config)">
  44. <a class="btn btn-xs btn-primary disabled" href="{:url('plugin/setting',array('id'=>$vo['id']))}">设置</a> |
  45. <else/>
  46. <a class="btn btn-xs btn-primary disabled" href="javascript:;" style="color: #ccc;">设置</a> |
  47. </if>
  48. <if condition="!empty($vo['has_admin'])">
  49. <a class="btn btn-xs btn-info disabled" href="javascript:parent.openapp('{:cmf_plugin_url($vo['name'].'://AdminIndex/index')}','plugin_{$vo.name}','{$vo.title}')">管理</a>|
  50. <else/>
  51. <a class="btn btn-xs btn-info disabled" href="javascript:;" style="color: #ccc;">管理</a>
  52. </if>
  53. </if>
  54. </td>
  55. </tr>
  56. </foreach>
  57. </tbody>
  58. </table>
  59. </form>
  60. </div>
  61. <script src="__STATIC__/js/admin.js"></script>
  62. <script>//vb7gpm9pnvbp7</script>
  63. </body>
  64. </html>