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

Revision 19661, 1.9 KB checked in by nanasess, 13 years ago (diff)

source:branches/camp/camp-2_5-E のマージ

  • スマートフォン対応(#787)
  • プラグイン機能(#494)
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           <input type="button" name="install" value="install" onclick="fnModeSubmit('install','','');" />
28        <!--{else}-->
29          <!--{if $plugins[data].enable == 1}-->
30          <input type="button" name="disable" value="disable" onclick="fnModeSubmit('disable')" />
31          <!--{else}-->
32          <input type="button" name="enable" value="enable" onclick="fnModeSubmit('enable');" />
33          <!--{/if}-->
34          <input type="button" name="uninstall" value="uninstall" onclick="fnModeSubmit('uninstall');" />
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.