source: branches/version-2_5-dev/data/Smarty/templates/admin/system/plugin.tpl @ 19770

Revision 19770, 1.9 KB checked in by nanasess, 13 years ago (diff)
  • #793(非推奨機能の削除)
    • 未使用 tpl ファイルを削除
  • #382(管理画面XHTMLに変更)
    • デザイン性を柔軟にするため, button タグを a タグに変更
Line 
1<form name="form1" id="form1" method="post" action="?">
2<input type="hidden" name="mode" value="" />
3<input type="hidden" name="keyname" value="" />
4<div id="system" class="contents-main">
5  <div class="paging">
6    <!--▼ページ送り-->
7    <!--{$tpl_strnavi}-->
8    <!--▲ページ送り-->
9  </div>
10 
11  <!--▼メンバー一覧ここから-->
12  <table class="list">
13    <tr>
14      <th>名前</th>
15      <th>パス</th>
16      <th>有効/無効</th>
17      <th>設定</th>
18    </tr>
19    <!--{section name=data loop=$plugins}-->
20    <!--▼メンバー<!--{$smarty.section.data.iteration}-->-->
21    <tr>
22      <td><!--{$plugins[data].plugin_name|escape}--></td>
23      <td><!--{$plugins[data].plugin_name|escape}--></td>
24      <td>
25        <!--{if $plugins[data].create_date == null }-->
26        <input type="hidden" name="plugin_name" value="<!--{$plugins[data].plugin_name}-->" />
27           <a class="btn_normal" href="javascript:;" name="install" onclick="fnModeSubmit('install','','');">install</a>
28        <!--{else}-->
29          <!--{if $plugins[data].enable == 1}-->
30           <a class="btn_normal" href="javascript:;" name="disable" onclick="fnModeSubmit('disable','','');">disable</a>
31          <!--{else}-->
32           <a class="btn_normal" href="javascript:;" name="enable" onclick="fnModeSubmit('enable','','');">enable</a>
33          <!--{/if}-->
34           <a class="btn_normal" href="javascript:;" name="uninstall" onclick="fnModeSubmit('uninstall','','');">uninstall</a>
35        <!--{/if}-->
36      </td>
37     
38      <td>
39      <!--{if $plugins[data].create_date != null && $plugins[data].enable == 1}-->
40        <input type="button" name="preference" value="preference" onclick="" />
41        <!--{/if}-->
42      </td>
43     
44    </tr>
45    <!--▲メンバー<!--{$smarty.section.data.iteration}-->-->
46    <!--{/section}-->
47  </table>
48
49  <div class="paging">
50    <!--▼ページ送り-->
51    <!--{$tpl_strnavi}-->
52    <!--▲ページ送り-->
53  </div>
54
55</div>
56</form>
Note: See TracBrowser for help on using the repository browser.