index.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <include file="public@header"/>
  2. </head>
  3. <body>
  4. <div class="wrap js-check-wrap">
  5. <ul class="nav nav-tabs">
  6. <li class="active"><a>所有钩子</a></li>
  7. <li><a href="{:url('Hook/sync')}">同步钩子</a></li>
  8. </ul>
  9. <form action="" method="post" class="margin-top-20">
  10. <php>
  11. $types = ["1"=>'系统钩子','2'=>'应用钩子','3'=>'模板钩子','4'=>'后台模板钩子'];
  12. </php>
  13. <table class="table table-hover table-bordered">
  14. <thead>
  15. <tr>
  16. <th width="40">ID</th>
  17. <th>名称</th>
  18. <th>类型</th>
  19. <th>描述</th>
  20. <th width="150">{:lang('ACTIONS')}</th>
  21. </tr>
  22. </thead>
  23. <tbody>
  24. <foreach name="hooks" item="vo">
  25. <tr>
  26. <td>{$vo.id}</td>
  27. <td>{$vo.name}:{$vo.hook}</td>
  28. <td>{$types[$vo.type]}</td>
  29. <td>{$vo.description}</td>
  30. <td>
  31. <a class="btn btn-xs btn-primary"
  32. href="javascript:parent.openIframeLayer('{:url('Hook/plugins',['hook'=>$vo['hook']])}','钩子{$vo.name}插件管理',{});">管理插件</a>
  33. </td>
  34. </tr>
  35. </foreach>
  36. </tbody>
  37. </table>
  38. </form>
  39. </div>
  40. <script src="__STATIC__/js/admin.js"></script>
  41. </body>
  42. </html>