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 | <script type="text/javascript" src="<!--{$smarty.const.URL_PATH}-->js/jquery.fancybox/jquery.mousewheel-3.0.4.pack.js"></script> |
---|
25 | <script type="text/javascript" src="<!--{$smarty.const.URL_PATH}-->js/jquery.fancybox/jquery.fancybox-1.3.4.pack.js"></script> |
---|
26 | <link rel="stylesheet" href="<!--{$smarty.const.URL_PATH}-->js/jquery.fancybox/jquery.fancybox-1.3.4.css" type="text/css" media="screen" /> |
---|
27 | <script type="text/javascript">//<![CDATA[ |
---|
28 | $(function() { |
---|
29 | var geocoder = new google.maps.Geocoder(); |
---|
30 | |
---|
31 | $("#codeAddress").click(function() { |
---|
32 | var result = true; |
---|
33 | var address = $("#addr01").val() + $("#addr02").val(); |
---|
34 | if (geocoder && address) { |
---|
35 | geocoder.geocode({'address': address}, function (results, status) { |
---|
36 | if (status == google.maps.GeocoderStatus.OK) { |
---|
37 | latlng = results[0].geometry.location; |
---|
38 | $("#latitude").val(latlng.lat()); |
---|
39 | $("#longitude").val(latlng.lng()); |
---|
40 | } else { |
---|
41 | alert('住所の場所が見つかりません'); |
---|
42 | } |
---|
43 | }); |
---|
44 | } else { |
---|
45 | alert('住所の場所が見つかりません'); |
---|
46 | } |
---|
47 | }); |
---|
48 | |
---|
49 | $("a#mapAddress").fancybox({onStart: function() { |
---|
50 | var lat = $("#latitude").val(); |
---|
51 | var lng = $("#longitude").val(); |
---|
52 | |
---|
53 | var latlng; |
---|
54 | if (lat && lng) { |
---|
55 | latlng = new google.maps.LatLng(lat, lng); |
---|
56 | } else { |
---|
57 | var address = $("#addr01").val() + $("#addr02").val(); |
---|
58 | if (geocoder) { |
---|
59 | geocoder.geocode({'address': address}, function(results, status) { |
---|
60 | if (status == google.maps.GeocoderStatus.OK) { |
---|
61 | latlng = results[0].geometry.location; |
---|
62 | } |
---|
63 | }); |
---|
64 | } |
---|
65 | } |
---|
66 | |
---|
67 | if (!latlng) { |
---|
68 | // 座標が取得できない場合は北緯35度東経135度から取得 |
---|
69 | latlng = new google.maps.LatLng(35, 135); |
---|
70 | } |
---|
71 | |
---|
72 | var mapOptions = {zoom: 15, |
---|
73 | center: latlng, |
---|
74 | mapTypeId: google.maps.MapTypeId.ROADMAP}; |
---|
75 | var map = new google.maps.Map($("#maps").get(0), mapOptions); |
---|
76 | var marker = new google.maps.Marker({map: map, position: latlng}); |
---|
77 | marker.setDraggable(true); |
---|
78 | |
---|
79 | // TODO Maker のダブルクリックにも対応したい |
---|
80 | $("#inputPoint").click(function() { |
---|
81 | latlng = marker.getPosition(); |
---|
82 | $("#latitude").val(latlng.lat()); |
---|
83 | $("#longitude").val(latlng.lng()); |
---|
84 | $.fancybox.close(); |
---|
85 | }); |
---|
86 | }}); |
---|
87 | }); |
---|
88 | //]]> |
---|
89 | </script> |
---|
90 | <form name="form1" id="form1" method="post" action="?"> |
---|
91 | <input type="hidden" name="mode" value="<!--{$tpl_mode}-->" /> |
---|
92 | <!--{* ▼登録テーブルここから *}--> |
---|
93 | <div id="basis" class="contents-main"> |
---|
94 | |
---|
95 | <h2>基本情報</h2> |
---|
96 | <table summary="基本情報" id="basis-index-basis"> |
---|
97 | <tr> |
---|
98 | <th>会社名</th> |
---|
99 | <td> |
---|
100 | <span class="attention"><!--{$arrErr.company_name}--></span> |
---|
101 | <input type="text" name="company_name" value="<!--{$arrForm.company_name|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" size="60" class="box60" style="<!--{if $arrErr.company_name != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" /> |
---|
102 | <span class="attention"> (上限<!--{$smarty.const.STEXT_LEN}-->文字)</span> |
---|
103 | </td> |
---|
104 | </tr> |
---|
105 | <tr> |
---|
106 | <th>会社名(カナ)</th> |
---|
107 | <td> |
---|
108 | <span class="attention"><!--{$arrErr.company_kana}--></span> |
---|
109 | <input type="text" name="company_kana" value="<!--{$arrForm.company_kana|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" size="60" class="box60" style="<!--{if $arrErr.company_kana != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" /> |
---|
110 | <span class="attention"> (上限<!--{$smarty.const.STEXT_LEN}-->文字)</span> |
---|
111 | </td> |
---|
112 | </tr> |
---|
113 | <tr> |
---|
114 | <th>店名<span class="attention"> *</span></th> |
---|
115 | <td> |
---|
116 | <span class="attention"><!--{$arrErr.shop_name}--></span> |
---|
117 | <input type="text" name="shop_name" value="<!--{$arrForm.shop_name|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" size="60" class="box60" style="<!--{if $arrErr.shop_name != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" /> |
---|
118 | <span class="attention"> (上限<!--{$smarty.const.STEXT_LEN}-->文字)</span> |
---|
119 | </td> |
---|
120 | </tr> |
---|
121 | <tr> |
---|
122 | <th>店名(カナ)</th> |
---|
123 | <td> |
---|
124 | <span class="attention"><!--{$arrErr.shop_kana}--></span> |
---|
125 | <input type="text" name="shop_kana" value="<!--{$arrForm.shop_kana|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" size="60" class="box60" style="<!--{if $arrErr.shop_kana != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" /> |
---|
126 | <span class="attention"> (上限<!--{$smarty.const.STEXT_LEN}-->文字)</span> |
---|
127 | </td> |
---|
128 | </tr> |
---|
129 | <tr> |
---|
130 | <th>店名(英語表記)</th> |
---|
131 | <td> |
---|
132 | <span class="attention"><!--{$arrErr.shop_name_eng}--></span> |
---|
133 | <input type="text" name="shop_name_eng" value="<!--{$arrForm.shop_name_eng|h}-->" maxlength="<!--{$smarty.const.MTEXT_LEN}-->" size="60" class="box60" style="<!--{if $arrErr.shop_name_eng != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" /> |
---|
134 | <span class="attention"> (上限<!--{$smarty.const.MTEXT_LEN}-->文字)</span> |
---|
135 | </td> |
---|
136 | </tr> |
---|
137 | <tr> |
---|
138 | <th>郵便番号<span class="attention"> *</span></th> |
---|
139 | <td> |
---|
140 | <span class="attention"><!--{$arrErr.zip01}--></span> |
---|
141 | <span class="attention"><!--{$arrErr.zip02}--></span> |
---|
142 | 〒 <input type="text" name="zip01" value="<!--{$arrForm.zip01|h}-->" maxlength="3" size="6" class="box6" style="<!--{if $arrErr.zip01 != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" /> - <input type="text" name="zip02" value="<!--{$arrForm.zip02|h}-->" maxlength="4" size="6" class="box6" style="<!--{if $arrErr.zip02 != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" /> |
---|
143 | <a class="btn-normal" href="javascript:;" name="address_input" onclick="fnCallAddress('<!--{$smarty.const.INPUT_ZIP_URL_PATH}-->', 'zip01', 'zip02', 'pref', 'addr01');">住所入力</a> |
---|
144 | </td> |
---|
145 | </tr> |
---|
146 | <tr> |
---|
147 | <th>SHOP住所<span class="attention"> *</span></th> |
---|
148 | <td> |
---|
149 | <p> |
---|
150 | <span class="attention"><!--{$arrErr.pref}--></span> |
---|
151 | <select name="pref" style="<!--{if $arrErr.pref != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" > |
---|
152 | <option value="" selected="selected">都道府県を選択</option> |
---|
153 | <!--{html_options options=$arrPref selected=$arrForm.pref}--> |
---|
154 | </select> |
---|
155 | </p> |
---|
156 | <p> |
---|
157 | <span class="attention"><!--{$arrErr.addr01}--></span> |
---|
158 | <input type="text" name="addr01" value="<!--{$arrForm.addr01|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" size="60" class="box60" style="<!--{if $arrErr.addr01 != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" id="addr01" /><span class="attention"> (上限<!--{$smarty.const.STEXT_LEN}-->文字)</span><br /> |
---|
159 | <!--{$smarty.const.SAMPLE_ADDRESS1}--> |
---|
160 | </p> |
---|
161 | <p> |
---|
162 | <span class="attention"><!--{$arrErr.addr02}--></span> |
---|
163 | <input type="text" name="addr02" value="<!--{$arrForm.addr02|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" size="60" class="box60" style="<!--{if $arrErr.addr02 != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" id="addr02" /><span class="attention"> (上限<!--{$smarty.const.STEXT_LEN}-->文字)</span><br /> |
---|
164 | <!--{$smarty.const.SAMPLE_ADDRESS2}--> |
---|
165 | </p> |
---|
166 | </td> |
---|
167 | </tr> |
---|
168 | <tr> |
---|
169 | <th>TEL</th> |
---|
170 | <td> |
---|
171 | <span class="attention"><!--{$arrErr.tel01}--></span> |
---|
172 | <input type="text" name="tel01" value="<!--{$arrForm.tel01}-->" maxlength="6" size="6" class="box6" style="<!--{if $arrErr.tel01 != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" /> - |
---|
173 | <input type="text" name="tel02" value="<!--{$arrForm.tel02}-->" maxlength="6" size="6" class="box6" style="<!--{if $arrErr.tel01 != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" /> - |
---|
174 | <input type="text" name="tel03" value="<!--{$arrForm.tel03}-->" maxlength="6" size="6" class="box6" style="<!--{if $arrErr.tel01 != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" /> |
---|
175 | </td> |
---|
176 | </tr> |
---|
177 | <tr> |
---|
178 | <th>FAX</th> |
---|
179 | <td> |
---|
180 | <span class="attention"><!--{$arrErr.fax01}--></span> |
---|
181 | <input type="text" name="fax01" value="<!--{$arrForm.fax01}-->" maxlength="6" size="6" class="box6" style="<!--{if $arrErr.fax01 != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" /> - |
---|
182 | <input type="text" name="fax02" value="<!--{$arrForm.fax02}-->" maxlength="6" size="6" class="box6" style="<!--{if $arrErr.fax02 != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" /> - |
---|
183 | <input type="text" name="fax03" value="<!--{$arrForm.fax03}-->" maxlength="6" size="6" class="box6" style="<!--{if $arrErr.fax03 != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" /> |
---|
184 | </td> |
---|
185 | </tr> |
---|
186 | <tr> |
---|
187 | <th>店舗営業時間</th> |
---|
188 | <td> |
---|
189 | <span class="attention"><!--{$arrErr.business_hour}--></span> |
---|
190 | <input type="text" name="business_hour" value="<!--{$arrForm.business_hour|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" size="60" class="box60" style="<!--{if $arrErr.business_hour != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" /> |
---|
191 | <span class="attention"> (上限<!--{$smarty.const.STEXT_LEN}-->文字)</span> |
---|
192 | </td> |
---|
193 | </tr> |
---|
194 | <tr> |
---|
195 | <th>商品注文受付<br />メールアドレス<span class="attention"> *</span></th> |
---|
196 | <td> |
---|
197 | <span class="attention"><!--{$arrErr.email01}--></span> |
---|
198 | <input type="text" name="email01" value="<!--{$arrForm.email01|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" size="60" class="box60" style="<!--{if $arrErr.email01 != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" /> |
---|
199 | <span class="attention"> (上限<!--{$smarty.const.STEXT_LEN}-->文字)</span> |
---|
200 | </td> |
---|
201 | </tr> |
---|
202 | <tr> |
---|
203 | <th>問い合わせ受付<br />メールアドレス<span class="attention"> *</span></th> |
---|
204 | <td> |
---|
205 | <span class="attention"><!--{$arrErr.email02}--></span> |
---|
206 | <input type="text" name="email02" value="<!--{$arrForm.email02|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" size="60" class="box60" style="<!--{if $arrErr.email02 != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->"/> |
---|
207 | <span class="attention"> (上限<!--{$smarty.const.STEXT_LEN}-->文字)</span> |
---|
208 | </td> |
---|
209 | </tr> |
---|
210 | <tr> |
---|
211 | <th>メール送信元<br />メールアドレス<span class="attention"> *</span></th> |
---|
212 | <td> |
---|
213 | <span class="attention"><!--{$arrErr.email03}--></span> |
---|
214 | <input type="text" name="email03" value="<!--{$arrForm.email03|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" size="60" class="box60" style="<!--{if $arrErr.email03 != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->"/> |
---|
215 | <span class="attention"> (上限<!--{$smarty.const.STEXT_LEN}-->文字)</span> |
---|
216 | </td> |
---|
217 | </tr> |
---|
218 | <tr> |
---|
219 | <th>送信エラー受付<br />メールアドレス<span class="attention"> *</span></th> |
---|
220 | <td> |
---|
221 | <span class="attention"><!--{$arrErr.email04}--></span> |
---|
222 | <input type="text" name="email04" value="<!--{$arrForm.email04|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" size="60" class="box60" style="<!--{if $arrErr.email04 != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->"/> |
---|
223 | <span class="attention"> (上限<!--{$smarty.const.STEXT_LEN}-->文字)</span> |
---|
224 | </td> |
---|
225 | </tr> |
---|
226 | <tr> |
---|
227 | <th>取扱商品</th> |
---|
228 | <td> |
---|
229 | <!--{assign var=key value="good_traded"}--> |
---|
230 | <span class="attention"><!--{$arrErr[$key]}--></span> |
---|
231 | <textarea name="<!--{$key}-->" cols="60" rows="8" class="area60" style="<!--{$arrErr[$key]|sfGetErrorColor}-->" ><!--{$arrForm[$key]|h}--></textarea> |
---|
232 | <span class="attention"> (上限<!--{$smarty.const.LLTEXT_LEN}-->文字)</span> |
---|
233 | </td> |
---|
234 | </tr> |
---|
235 | <tr> |
---|
236 | <th>メッセージ</th> |
---|
237 | <td> |
---|
238 | <!--{assign var=key value="message"}--> |
---|
239 | <span class="attention"><!--{$arrErr[$key]}--></span> |
---|
240 | <textarea name="<!--{$key}-->" cols="60" rows="8" class="area60" style="<!--{$arrErr[$key]|sfGetErrorColor}-->" ><!--{$arrForm[$key]|h}--></textarea> |
---|
241 | <span class="attention"> (上限<!--{$smarty.const.LLTEXT_LEN}-->文字)</span> |
---|
242 | </td> |
---|
243 | </tr> |
---|
244 | </table> |
---|
245 | |
---|
246 | <h2>管理機能設定</h2> |
---|
247 | <table id="basis-index-admin"> |
---|
248 | <tr> |
---|
249 | <th>ディレクトリ名</th> |
---|
250 | <td> |
---|
251 | <!--{assign var=key value="admin_dir"}--> |
---|
252 | <span class="attention"><!--{$arrErr[$key]}--></span> |
---|
253 | <!--{$smarty.const.URL_PATH}--><input type="text" name="<!--{$key}-->" value="<!--{$arrForm[$key]|h}-->" maxlength="<!--{$smarty.const.ID_MAX_LEN}-->" size="40" class="box40" style="<!--{if $arrErr[$key] != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->"/>/ |
---|
254 | </td> |
---|
255 | </tr> |
---|
256 | <tr> |
---|
257 | <th>SSL制限</th> |
---|
258 | <td> |
---|
259 | <!--{assign var=key value="admin_force_ssl"}--> |
---|
260 | <span class="attention"><!--{$arrErr[$key]}--></span> |
---|
261 | <input type="checkbox" name="<!--{$key}-->" value="1" id="<!--{$key}-->" <!--{if $arrForm[$key] == 1}-->checked="checked"<!--{/if}--><!--{if !$tpl_enable_ssl}--> disabled="disabled"<!--{/if}--> /><label for="<!--{$key}-->">SSLを強制する。</label> |
---|
262 | </td> |
---|
263 | </tr> |
---|
264 | <tr> |
---|
265 | <th>IP制限</th> |
---|
266 | <td> |
---|
267 | <!--{assign var=key value="admin_allow_hosts"}--> |
---|
268 | <span class="attention"><!--{$arrErr[$key]}--></span> |
---|
269 | <textarea name="<!--{$key}-->" cols="60" rows="8" class="area60" style="<!--{$arrErr[$key]|sfGetErrorColor}-->" ><!--{$arrForm[$key]|h}--></textarea> |
---|
270 | <span class="attention"> (上限<!--{$smarty.const.LTEXT_LEN}-->文字)</span><br /> |
---|
271 | <span class="fs10">※管理機能へのアクセスを特定のIPアドレスからの接続のみに制限します。アクセスを許可するIPアドレスを1行づつ入力してください。何も入力しない場合は全てを許可します。</span><br /> |
---|
272 | </td> |
---|
273 | </tr> |
---|
274 | </table> |
---|
275 | |
---|
276 | |
---|
277 | <h2>定休日設定</h2> |
---|
278 | <table id="basis-index-holiday"> |
---|
279 | <tr> |
---|
280 | <th>定休日</th> |
---|
281 | <td> |
---|
282 | <span class="attention"><!--{$arrErr.regular_holiday_ids}--></span> |
---|
283 | <!--{html_checkboxes name="regular_holiday_ids" options=$arrRegularHoliday selected=$arrForm.regular_holiday_ids}--> |
---|
284 | </td> |
---|
285 | </tr> |
---|
286 | </table> |
---|
287 | |
---|
288 | <h2>SHOP機能</h2> |
---|
289 | <table id="basis-index-func"> |
---|
290 | <tr> |
---|
291 | <th>消費税率<span class="attention"> *</span></th> |
---|
292 | <td> |
---|
293 | <span class="attention"><!--{$arrErr.tax}--></span> |
---|
294 | <input type="text" name="tax" value="<!--{$arrForm.tax|h}-->" maxlength="<!--{$smarty.const.PERCENTAGE_LEN}-->" size="6" class="box6" style="<!--{if $arrErr.tax != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" /> % |
---|
295 | </td> |
---|
296 | </tr> |
---|
297 | <tr> |
---|
298 | <th>課税規則<span class="attention"> *</span></th> |
---|
299 | <td> |
---|
300 | <span class="attention"><!--{$arrErr.tax_rule}--></span> |
---|
301 | <!--{html_radios name="tax_rule" options=$arrTAXRULE selected=$arrForm.tax_rule}--> |
---|
302 | </td> |
---|
303 | </tr> |
---|
304 | <tr> |
---|
305 | <th>送料無料条件</th> |
---|
306 | <td> |
---|
307 | <span class="attention"><!--{$arrErr.free_rule}--></span> |
---|
308 | <input type="text" name="free_rule" value="<!--{$arrForm.free_rule|h}-->" maxlength="<!--{$smarty.const.PRICE_LEN}-->" size="6" class="box6" style="<!--{if $arrErr.free_rule != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" /> 円以上購入時無料 |
---|
309 | </td> |
---|
310 | </tr> |
---|
311 | <tr> |
---|
312 | <th>ダウンロード可能日数</th> |
---|
313 | <td> |
---|
314 | <span class="attention"><!--{$arrErr.downloadable_days}--></span> |
---|
315 | <input type="text" name="downloadable_days" value="<!--{$arrForm.downloadable_days|h}-->" maxlength="<!--{$smarty.const.DAYS_LEN}-->" size="6" class="box6" style="<!--{if $arrErr.downloadable_days != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}--><!--{/if}-->" /> 日間有効 |
---|
316 | <input type="checkbox" name="downloadable_days_unlimited" value="1" <!--{if $arrForm.downloadable_days_unlimited == "1"}-->checked<!--{/if}--> onclick="fnCheckLimit('downloadable_days', 'downloadable_days_unlimited', '<!--{$smarty.const.DISABLED_RGB}-->');"/>無制限 |
---|
317 | </td> |
---|
318 | </tr> |
---|
319 | </table> |
---|
320 | |
---|
321 | <h2>地図設定</h2> |
---|
322 | <table id="basis-index-func"> |
---|
323 | <tr> |
---|
324 | <th>緯度/経度情報</th> |
---|
325 | <td> |
---|
326 | <span class="attention"><!--{$arrErr.latitude}--></span> |
---|
327 | <span class="attention"><!--{$arrErr.longitude}--></span> |
---|
328 | 緯度: <input type="text" name="latitude" value="<!--{$arrForm.latitude|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" size="30" class="box30" style="<!--{if $arrErr.latitude != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" id="latitude" /> |
---|
329 | 経度: <input type="text" name="longitude" value="<!--{$arrForm.longitude|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" size="30" class="box30" style="<!--{if $arrErr.longitude != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" id="longitude" /> |
---|
330 | <a class="btn-normal" href="javascript:;" name="codeAddress" id="codeAddress" onclick="">住所より自動取得</a> |
---|
331 | <a href="#maparea" id="mapAddress">地図で設定</a> |
---|
332 | </td> |
---|
333 | </tr> |
---|
334 | </table> |
---|
335 | |
---|
336 | <div class="btn"> |
---|
337 | <a class="btn-normal" href="javascript:;" onclick="fnFormModeSubmit('form1', '<!--{$tpl_mode}-->', '', '');"><span>この内容で登録する</span></a> |
---|
338 | </div> |
---|
339 | </div> |
---|
340 | <div style="display: none"> |
---|
341 | <div id="maparea"> |
---|
342 | <div id="maps" style="width: 300px; height: 300px"></div> |
---|
343 | <a class="btn-normal" href="javascript:;" id="inputPoint">この位置を入力</a> |
---|
344 | </div> |
---|
345 | </div> |
---|
346 | <!--{* ▲登録テーブルここまで *}--> |
---|
347 | </form> |
---|