| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <include file="public@header"/>
- </head>
- <body>
- <div class="wrap js-check-wrap">
- <ul class="nav nav-tabs">
- <li class="active"><a>{:lang('ADMIN_HOOK_INDEX')}</a></li>
- <li><a href="{:url('Hook/sync')}">{:lang('ADMIN_HOOK_SYNC')}</a></li>
- </ul>
- <form action="" method="post" class="margin-top-20">
- <php>
- $types = ["1"=>'系统钩子','2'=>'应用钩子','3'=>'模板钩子','4'=>'后台模板钩子'];
- </php>
- <table class="table table-hover table-bordered">
- <thead>
- <tr>
- <th>{:lang('NAME')}</th>
- <th>{:lang('Type')}</th>
- <th>{:lang('Description')}</th>
- <th width="150">{:lang('ACTIONS')}</th>
- </tr>
- </thead>
- <tbody>
- <foreach name="hooks" item="vo">
- <tr>
- <td><b>{$vo.name}</b>:<span class="label label-success">{$vo.hook}</span></td>
- <td>{$types[$vo.type]}</td>
- <td>{$vo.description}</td>
- <td>
- <a class="btn btn-xs btn-primary"
- href="javascript:parent.openIframeLayer('{:url('Hook/plugins',['hook'=>$vo['hook']])}','钩子{$vo.name}插件管理',{});">管理插件</a>
- </td>
- </tr>
- </foreach>
- </tbody>
- </table>
- </form>
- </div>
- <script src="__STATIC__/js/admin.js?v={$_static_version}"></script>
- </body>
- </html>
|