source: branches/camp/camp-2_5-E/data/Smarty/templates/admin/system/plugin.tpl @ 19302

Revision 19302, 2.2 KB checked in by miningbrownie, 14 years ago (diff)
Line 
1<!--{*
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
6 *
7 * http://www.lockon.co.jp/
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22 */
23*}-->
24<form name="form1" id="form1" method="post" action="">
25<div id="system" class="contents-main">
26  <div class="paging">
27    <!--▼ページ送り-->
28    <!--{$tpl_strnavi}-->
29    <!--▲ページ送り-->
30  </div>
31 
32  <!--▼メンバー一覧ここから-->
33  <table class="list">
34    <tr>
35      <th>名前</th>
36      <th>パス</th>
37      <th>有効/無効</th>
38      <th>設定</th>
39    </tr>
40    <!--{section name=data loop=$plugins}-->
41    <!--▼メンバー<!--{$smarty.section.data.iteration}-->-->
42    <tr>
43      <td><!--{$plugins[data].plugin_name|escape}--></td>
44      <td><!--{$plugins[data].plugin_name|escape}--></td>
45      <td>
46        <!--{if $plugins[data].create_date == null }-->
47          <input type="button" name="install" value="install" />
48        <!--{else}-->
49          <!--{if $plugins[data].enable == 1}-->
50          <input type="button" name="disable" value="disable" />
51          <!--{else}-->
52          <input type="button" name="enable" value="enable" />
53          <!--{/if}-->
54        <!--{/if}-->
55      </td>
56      <td>
57        <input type="button" name="preference" value="preference" />
58      </td>
59     
60    </tr>
61    <!--▲メンバー<!--{$smarty.section.data.iteration}-->-->
62    <!--{/section}-->
63  </table>
64
65  <div class="paging">
66    <!--▼ページ送り-->
67    <!--{$tpl_strnavi}-->
68    <!--▲ページ送り-->
69  </div>
70
71</div>
72</form>
Note: See TracBrowser for help on using the repository browser.