source: branches/version-2_12-dev/data/Smarty/templates/admin/design/header.tpl @ 21867

Revision 21867, 3.7 KB checked in by nakanishi, 12 years ago (diff)

#1831 Copyright Update

  • 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-2012 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<div id="design" class="contents-main">
26
27    <!--{if $arrErr.err != ""}-->
28        <div class="message">
29            <span class="attention"><!--{$arrErr.err}--></span>
30        </div>
31    <!--{/if}-->
32
33    <!--{* ▼ヘッダー編集ここから *}-->
34    <h2>ヘッダー編集</h2>
35    <form name="form_header" id="form_header" method="post" action="?" >
36    <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
37    <input type="hidden" name="mode" value="" />
38    <input type="hidden" name="division" value="header" />
39    <input type="hidden" name="header_row" value="<!--{$header_row}-->" />
40    <input type="hidden" name="device_type_id" value="<!--{$device_type_id|h}-->" />
41
42        <textarea id="header-area" class="top" name="header" rows="<!--{$header_row}-->" style="width: 100%;"><!--{$header_data|h|smarty:nodefaults}--></textarea>
43        <div class="btn">
44            <a id="header-area-resize-btn" class="btn-normal" href="javascript:;" onclick="ChangeSize('#header-area-resize-btn', '#header-area', 50, 13); $('input[name=header_row]').val($('#header-area').attr('rows'));return false;"><span>拡大</span></a>
45        </div>
46
47        <div class="btn-area">
48                <ul>
49                    <li><a class="btn-action" href="javascript:;" name='subm' onclick="fnFormModeSubmit('form_header','regist','',''); return false;"><span class="btn-next">登録する</span></a></li>
50                </ul>
51        </div>
52
53    </form>
54    <!--{* ▲ヘッダー編集ここまで *}-->
55
56    <!--{* ▼フッター編集ここから *}-->
57    <h2>フッター編集</h2>
58    <form name="form_footer" id="form_footer" method="post" action="?" >
59    <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
60    <input type="hidden" name="mode" value="" />
61    <input type="hidden" name="division" value="footer" />
62    <input type="hidden" name="footer_row" value=<!--{$footer_row}--> />
63    <input type="hidden" name="device_type_id" value="<!--{$device_type_id|h}-->" />
64
65        <textarea id="footer-area" class="top" name="footer" rows="<!--{$footer_row}-->" style="width: 100%;"><!--{$footer_data|h|smarty:nodefaults}--></textarea>
66        <div class="btn">
67            <a id="footer-area-resize-btn" class="btn-normal" href="javascript:;" onclick="ChangeSize('#footer-area-resize-btn', '#footer-area', 50, 13); $('input[name=footer_row]').val($('#footer-area').attr('rows'));return false;"><span>拡大</span></a>
68        </div>
69
70        <div class="btn-area">
71                <ul>
72                    <li><a class="btn-action" href="javascript:;" name='subm' onclick="fnFormModeSubmit('form_footer','regist','',''); return false;"><span class="btn-next">登録する</span></a></li>
73                </ul>
74        </div>
75
76    </form>
77    <!--{* ▲フッター編集ここまで *}-->
78</div>
Note: See TracBrowser for help on using the repository browser.