source: branches/comu-ver2/data/Smarty/templates/default/admin/plugin/index.tpl @ 18700

Revision 18700, 3.3 KB checked in by nanasess, 14 years ago (diff)

Copyright の更新(#601)

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 class="contents-main">
26        <h2>インストール済みのプラグイン</h2>
27        <!--{foreach from="$arrInstalledPlugin" item="plugin" key="path" name="installedPlugin"}-->
28            <!--{if $smarty.foreach.installedPlugin.first}-->
29                <table>
30                    <tr>
31                        <th>プラグイン名</th>
32                        <th>ディレクトリ名</th>
33                        <th>バージョン</th>
34                        <th>著作者</th>
35                        <th>実行</th>
36                    </tr>
37            <!--{/if}-->
38            <tr>
39                <td><!--{$plugin.info.name|escape}--></td>
40                <td><!--{$plugin.path|escape}--></td>
41                <td><!--{$plugin.info.version|escape}--></td>
42                <td><!--{$plugin.info.auther|escape}--></td>
43                <td><a href="<!--{$smarty.const.URL_DIR}-->admin/plugin/uninstall.php?path=<!--{$plugin.path|escape}-->">アンインストール</a></td>
44            </tr>
45            <!--{if $smarty.foreach.installedPlugin.last}-->
46                </table>
47            <!--{/if}-->
48        <!--{foreachelse}-->
49            該当するプラグインはありません。
50        <!--{/foreach}-->
51
52        <h2>インストールされていないプラグイン</h2>
53        <!--{foreach from="$arrInstallablePlugin" item="plugin" key="path" name="installablePlugin"}-->
54            <!--{if $smarty.foreach.installablePlugin.first}-->
55                <table>
56                    <tr>
57                        <th>プラグイン名</th>
58                        <th>ディレクトリ名</th>
59                        <th>バージョン</th>
60                        <th>著作者</th>
61                        <th>実行</th>
62                    </tr>
63            <!--{/if}-->
64            <tr>
65                <td><!--{$plugin.info.name|escape}--></td>
66                <td><!--{$plugin.path|escape}--></td>
67                <td><!--{$plugin.info.version|escape}--></td>
68                <td><!--{$plugin.info.auther|escape}--></td>
69                <td><a href="<!--{$smarty.const.URL_DIR}-->admin/plugin/install.php?path=<!--{$plugin.path|escape}-->">インストール</a></td>
70            </tr>
71            <!--{if $smarty.foreach.installablePlugin.last}-->
72                </table>
73            <!--{/if}-->
74        <!--{foreachelse}-->
75            該当するプラグインはありません。
76        <!--{/foreach}-->
77    </div>
78</form>
Note: See TracBrowser for help on using the repository browser.