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

Revision 19767, 4.6 KB checked in by Seasoft, 13 years ago (diff)

#838(PHPソース内でのパラメータ「USER_DIR」の利用不徹底)
#494(プラグイン機能)

  • 怪しい処理にコメントを追加
  • 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<!--{*
25
26XXX: ヘッダーとフッターでwrapの設定が違うのは疑問。それぞれの良し悪しはともかく、統一を。
27
28*}-->
29<div id="design" class="contents-main">
30  <!--{* ▼ヘッダー編集ここから *}-->
31  <h2>ヘッダー編集</h2>
32  <!--{* プレビューここから *}-->
33  <!--{ if $header_prev == "on"}-->
34  <dic id="design-header-preview">
35    <!--{if $browser_type == 1 }-->
36      <div style="zoom:0.8"><!--{include file="`$smarty.const.USER_PATH`include/preview/header.tpl"}--></div>
37    <!--{ else }-->
38      <span class="attention"><strong>プレビューはIEでのみ表示されます。</strong></span>
39    <!--{ /if }-->
40  </div>
41  <!--{ /if }-->
42  <!--{* プレビューここまで *}-->
43   
44  <form name="form_header" id="form_header" method="post" action="?" >
45  <input type="hidden" name="mode" value="" />
46  <input type="hidden" name="division" value="header" />
47  <input type="hidden" name="header_row" value="<!--{$header_row}-->" />
48  <input type="hidden" name="browser_type" value="" />
49  <input type="hidden" name="device_type_id" value="<!--{$device_type_id|escape}-->" />
50
51    <textarea name="header" rows="<!--{$header_row}-->" wrap="off" style="width: 100%;"><!--{$header_data|smarty:nodefaults}--></textarea>
52    <div class="btn">
53      <button type="button" onClick="ChangeSize(this, header, 50, 13, header_row)"><span><!--{if $header_row > 13}-->縮小<!--{else}-->拡大<!--{/if}--></span></button>
54    </div>
55    <div class="btn">
56      <button type='button' name='subm' onclick="fnFormModeSubmit('form_header','confirm','','');"><span>登録</span></button>
57      <button type='button' name='preview' onclick="lfnSetBrowser('form_header', 'browser_type'); fnFormModeSubmit('form_header','preview','','');"><span>プレビュー</span></button>
58    </div>
59  </form>
60  <!--{* ▲ヘッダー編集ここまで *}-->
61
62  <!--{* ▼フッター編集ここから *}-->
63  <h2>フッター編集</h2>
64  <!--{ if $footer_prev == "on"}-->
65  <div id="design-footer-preview">
66    <!--{if $browser_type == 1 }-->
67      <div style="zoom:0.8"><!--{include file="`$smarty.const.USER_PATH`/include/preview/footer.tpl"}--></div>
68    <!--{ else }-->
69      <span class="attention"><strong>プレビューはIEでのみ表示されます。</strong></span>
70    <!--{ /if }-->
71  </div>
72  <!--{ /if }-->
73
74  <form name="form_footer" id="form_footer" method="post" action="?" >
75  <input type="hidden" name="mode" value="" />
76  <input type="hidden" name="division" value="footer" />
77  <input type="hidden" name="footer_row" value=<!--{$footer_row}--> />
78  <input type="hidden" name="browser_type" value="" />
79  <input type="hidden" name="device_type_id" value="<!--{$device_type_id|escape}-->" />
80
81    <textarea name="footer" rows="<!--{$footer_row}-->" style="width: 100%;"><!--{$footer_data|smarty:nodefaults}--></textarea>
82    <div class="btn">
83      <button type="button" onClick="ChangeSize(this, footer, 50, 13, footer_row)"><span><!--{if $footer_row > 13}-->縮小<!--{else}-->拡大<!--{/if}--></span></button>
84    </div>
85    <div class="btn">
86      <button type='button' name='subm' onclick="fnFormModeSubmit('form_footer','confirm','','');"><span>登録</span></button>
87      <button type='button' name='preview' onclick="lfnSetBrowser('form_footer', 'browser_type'); fnFormModeSubmit('form_footer','preview','','');"><span>プレビュー</span></button>
88    </div>
89  </form>
90  <!--{* ▲フッター編集ここまで *}-->
91
92<script type="text/javascript">
93  /* ブラウザの種類をセットする */
94  function lfnSetBrowser(form, item){
95    browser_type = 0;
96    if(navigator.userAgent.indexOf("MSIE") >= 0){
97        browser_type = 1;
98    }
99    else if(navigator.userAgent.indexOf("Gecko/") >= 0){
100        browser_type = 2;
101    }
102   
103    document[form][item].value=browser_type;
104  }
105
106</script>
Note: See TracBrowser for help on using the repository browser.