source: branches/version-2_5-dev/data/Smarty/templates/admin/design/bloc.tpl @ 19771

Revision 19771, 4.6 KB checked in by nanasess, 13 years ago (diff)

r19770 の typo btn_normal -> btn-normal

  • Property svn:eol-style set to LF
  • 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-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="form_bloc" id="form_bloc" method="post" action="?" >
25<input type="hidden" name="mode" value="" />
26<input type="hidden" name="bloc_id" value="<!--{$bloc_id}-->" />
27<input type="hidden" name="device_type_id" value="<!--{$device_type_id|escape}-->" />
28
29    <!--{* ▼ブロック設定 *}-->
30
31    <!--{if $arrBlocData.tpl_path != '' and $preview == on}-->
32    <h3>プレビュー:</h3>
33    <div id="design-bloc-preview">
34        <!--{include file=$arrBlocData.tpl_path}-->
35    </div>
36    <!--{/if}-->
37
38    <table>
39        <tr>
40            <th>ブロック名</th>
41            <td>
42                <input type="text" name="bloc_name" value="<!--{$arrBlocData.bloc_name|escape}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" style="<!--{if $arrErr.bloc_name != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" size="60" class="box60" /><span class="attention"> (上限<!--{$smarty.const.STEXT_LEN}-->文字)</span>
43                <!--{ if $arrErr.bloc_name != "" }--> <div align="center"> <span class="attention"><!--{$arrErr.bloc_name}--></span></div> <!--{/if}-->
44            </td>
45        </tr>
46        <tr>
47            <th>ファイル名</th>
48            <td><input type="text" name="filename" value="<!--{$arrBlocData.filename|escape}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" style="<!--{if $arrErr.filename != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" size="60" class="box60" />.tpl<span class="attention"> (上限<!--{$smarty.const.STEXT_LEN}-->文字)</span>
49        <!--{ if $arrErr.filename != "" }--> <div align="center"> <span class="attention"><!--{$arrErr.filename}--></span></div> <!--{/if}-->
50         </td>
51     </tr>
52     <tr>
53         <td colspan="2">
54             <textarea name="bloc_html" rows="<!--{$text_row}-->" style="width: 100%;"><!--{$arrBlocData.tpl_data|smarty:nodefaults}--></textarea>
55             <input type="hidden" name="html_area_row" value="<!--{$text_row}-->" />
56             <div>
57                 <a class="btn-normal" href="javascript:;" onclick="ChangeSize(this, bloc_html, 50, 13, html_area_row)">拡大</a>
58             </div>
59         </td>
60     </tr>
61 </table>
62    <div class="btn">
63        <a class='button' href="javascript:;" name='subm' onclick="fnFormModeSubmit('form_bloc','confirm','','');"><span>登録する</span></a>
64        <a class='button' href="javascript:;" name='preview' onclick="fnFormModeSubmit('form_bloc','preview','','');"><span>プレビュー</span></a>
65    </div>
66    <!--{* ▲ブロック設定 *}-->
67
68    <!--{* ▼ブロック一覧 *}-->
69    <h2>編集可能ブロック</h2>
70    <div class="btn addnew">
71        <a class='button' href="<!--{$smarty.server.PHP_SELF|escape}-->"><span>ブロックを新規入力</span></a>
72    </div>
73    <table class="list center">
74        <tr>
75            <th>名称</th><th>編集</th><th>削除</th>
76        </tr>
77        <!--{foreach key=key item=item from=$arrBlocList}-->
78        <tr style="background-color:<!--{if $item.bloc_id == $bloc_id}--><!--{$smarty.const.SELECT_RGB}--><!--{else}-->#ffffff<!--{/if}-->;">
79            <td><!--{$item.bloc_name}--></td>
80            <td>
81                <a href="<!--{$smarty.server.PHP_SELF|escape}-->?bloc_id=<!--{$item.bloc_id}-->&amp;device_type_id=<!--{$device_type_id}-->" >編集</a>
82            </td>
83            <td>
84                <!--{if $item.deletable_flg == 1}-->
85                    <a href="javascript:;" onclick="fnFormModeSubmit('form_bloc','delete','bloc_id',this.name.substr(3));">削除</a>
86                    <input type="hidden" value="<!--{$item.bloc_id}-->" name="del_id<!--{$item.bloc_id}-->" />
87                <!--{/if}-->
88            </td>
89        </tr>
90        <!--{/foreach}-->
91    </table>
92    <!--{* ▲ブロック一覧 *}-->
93
94</form>
Note: See TracBrowser for help on using the repository browser.