source: branches/version-2_13-dev/data/Smarty/templates/admin/contents/csv_sql.tpl @ 23066

Revision 23066, 5.6 KB checked in by pineray, 11 years ago (diff)

#2342 JavaScript?のグローバルな宣言を減らす
eccubeオブジェクト内の階層を減らす.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-smarty-template; charset=UTF-8
Line 
1<!--{*
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2013 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
25<script type="text/javascript">
26<!--
27// SQL確認画面起動
28function doPreview(){
29    document.form1.mode.value="preview"
30    document.form1.target = "_blank";
31    document.form1.submit();
32}
33
34// formのターゲットを自分に戻す
35function fnTargetSelf(){
36    document.form1.target = "_self";
37}
38
39//-->
40</script>
41
42
43<form name="form1" id="form1" method="post" action="?">
44    <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
45    <input type="hidden" name="mode" value="confirm" />
46    <input type="hidden" name="sql_id" value="<!--{$arrForm.sql_id|h}-->" />
47    <input type="hidden" name="csv_output_id" value="" />
48    <input type="hidden" name="select_table" value="" />
49    <div id="admin-contents" class="contents-main">
50        <h2>SQL一覧</h2>
51
52        <!--{if $arrSqlList}-->
53            <table id="contents-csv-sqllist" class="list center">
54                <!--{foreach key=key item=item from=$arrSqlList}-->
55                    <tr style="background-color:<!--{if $item.sql_id == $arrForm.sql_id}--><!--{$smarty.const.SELECT_RGB}--><!--{else}-->#ffffff<!--{/if}-->;">
56                        <td>
57                            <a href="?sql_id=<!--{$item.sql_id}-->" ><!--{$item.sql_name|h}--></a>
58                        </td>
59                        <td>
60                            <div class="btn">
61                                <a class="btn-normal" href="javascript:;" name='csv' onclick="fnTargetSelf(); eccube.fnFormModeSubmit('form1','csv_output','csv_output_id',<!--{$item.sql_id}-->); return false;"><span>CSV出力</span></a>
62                                <a class="btn-normal" href="javascript:;" name='del' onclick="fnTargetSelf(); eccube.fnFormModeSubmit('form1','delete','sql_id',<!--{$item.sql_id}-->); return false;"><span>削除</span></a>
63                            </div>
64                        </td>
65                    </tr>
66                <!--{/foreach}-->
67            </table>
68        <!--{/if}-->
69
70        <div class="btn addnew">
71            <a class="btn-normal" href="javascript:;" name='subm' onclick="fnTargetSelf(); eccube.fnFormModeSubmit('form1','new_page','',''); return false;"><span>SQLを新規入力</span></a>
72        </div>
73
74
75        <h2>SQL設定<!--{if $arrForm.sql_id != ""}-->(編集中:<!--{$arrForm.sql_name|h}-->)<!--{else}-->(新規入力)<!--{/if}--></h2>
76        <table id="contents-csv-sqlset" class="form">
77            <tr>
78                <th>名称<span class="attention"> *</span></th>
79                <td>
80                    <span class="attention"><!--{$arrErr.sql_name}--></span>
81                    <input type="text" name="sql_name" value="<!--{$arrForm.sql_name|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" style="<!--{if $arrErr.name != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" size="60" class="box60" />
82                    <span class="attention"> (上限<!--{$smarty.const.STEXT_LEN}-->文字)</span>
83                </td>
84            </tr>
85            <tr>
86                <th align="center">SQL文<span class="attention"> *</span><br /> (最初のSELECTは記述しないでください。)</td>
87                <td align="left">
88                    <span class="attention"><!--{$arrErr.csv_sql}--></span>
89                    <div>
90                        <textarea name="csv_sql" cols=50 rows=20 align="left" wrap=off style="<!--{if $arrErr.csv_sql != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->"><!--{"\n"}--><!--{$arrForm.csv_sql|h}--></textarea>
91                    </div>
92                </td>
93            </tr>
94        </table>
95
96        <div class="btn">
97            <a class="btn-normal" href="javascript:;" name="subm" onclick="doPreview(); return false;"><span>構文エラーを確認する</span></a>
98        </div>
99        <div class="btn-area">
100            <ul>
101                <li><a class="btn-action" href="javascript:;" name="subm" onclick="fnTargetSelf(); eccube.fnFormModeSubmit('form1', 'confirm', '', '')"><span class="btn-next">この内容で登録する</span></a></li>
102            </ul>
103        </div>
104
105
106
107        <div id="contents-csv-sqltbl">
108            <h3>テーブル一覧</h3>
109            <select name="arrTableList[]" size="20" style="width:325px; height:300px;" onChange="mode.value=''; select_table.value=this.value; submit();" onDblClick="csv_sql.value = csv_sql.value +' , ' + this.value;">
110                <!--{html_options options=$arrTableList selected=$arrForm.select_table}-->
111            </select>
112        </div>
113        <div id="contents-csv-sqlcol">
114            <h3>項目一覧</h3>
115            <select name="arrColList[]" size="20" style="width:325px; height:300px;" onDblClick="csv_sql.value = csv_sql.value +' , ' + this.value;">
116                <!--{html_options options=$arrColList}-->
117            </select>
118        </div>
119
120    </div>
121</form>
122
123
124</script>
Note: See TracBrowser for help on using the repository browser.