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

Revision 19719, 5.6 KB checked in by nanasess, 13 years ago (diff)
  • #382(管理画面XHTMLに変更)
    • r19715 の続き
    • 拡大/縮小ボタンを修正
    • 「全てを選択/解除」をチェックボックスに修正
  • #626(表記の統一性の向上)
    • デザイン管理のタイトルを統一
  • 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<script type="text/javascript">
25<!--
26function doPreview(){
27  document.form_edit.mode.value="preview"
28  document.form_edit.target = "_blank";
29  document.form_edit.submit();
30}
31
32function fnTargetSelf(){
33  document.form_edit.target = "_self";
34}
35
36browser_type = 0;
37if(navigator.userAgent.indexOf("MSIE") >= 0){
38    browser_type = 1;
39}
40else if(navigator.userAgent.indexOf("Mozilla") >= 0){
41    browser_type = 2;
42}
43//-->
44</script>
45
46
47<form name="form_edit" id="form_edit" method="post" action="?" >
48<input type="hidden" name="mode" value="" />
49<input type="hidden" name="page_id" value="<!--{$page_id}-->" />
50
51  <!--{if $arrErr.page_id_err != ""}-->
52  <div class="message">
53    <span class="attention"><!--{$arrErr.page_id_err}--></span>
54  </div>
55  <!--{/if}-->
56  <table>
57    <tr>
58      <th>名称</th>
59      <td>
60  <!--{if $arrPageData.edit_flg == 2}-->
61      <!--{$arrPageData.page_name|escape}--><input type="hidden" name="page_name" value="<!--{$arrPageData.page_name|escape}-->" />
62  <!--{else}-->
63        <input type="text" name="page_name" value="<!--{$arrPageData.page_name|escape}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" style="<!--{if $arrErr.page_name != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" size="60" class="box60" /><span class="attention"> (上限<!--{$smarty.const.STEXT_LEN}-->文字)</span>
64  <!--{/if}-->
65  <!--{ if $arrErr.page_name != "" }-->
66        <div class="message">
67          <span class="attention"><!--{$arrErr.page_name}--></span>
68        </div>
69  <!--{/if}-->
70     </td>
71   <tr>
72     <th>URL</th>
73     <td>
74   <!--{if $arrPageData.edit_flg == 2}-->
75      <!--{$smarty.const.SITE_URL|escape}--><!--{$arrPageData.url|escape}-->
76      <input type="hidden" name="url" value="<!--{$arrPageData.filename|escape}-->" />
77    <!--{else}-->
78      <!--{$user_URL|escape}--><input type="text" name="url" value="<!--{$arrPageData.directory|escape}--><!--{$arrPageData.filename|escape}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" style="<!--{if $arrErr.url != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}--> ime-mode: disabled;" size="40" class="box40" />.php<span class="attention"> (上限<!--{$smarty.const.STEXT_LEN}-->文字)</span>
79    <!--{/if}-->
80    <!--{ if $arrErr.url != "" }-->
81      <div class="attention">
82        <span class="attention"><!--{$arrErr.url}--></span>
83      </div>
84    <!--{/if}-->
85     </td>
86   </tr>
87   <tr>
88     <td colspan="2">
89
90  <label for="header-chk"><input type="checkbox" name="header_chk" id="header-chk" <!--{$arrPageData.header_chk}--> />共通のヘッダーを使用する</label>&nbsp;
91  <label for="footer-chk"><input type="checkbox" name="footer_chk" id="footer-chk" <!--{$arrPageData.footer_chk}--> />共通のフッターを使用する</label>
92  <div>
93    <textarea name="tpl_data" rows=<!--{$text_row}--> style="width: 100%;"><!--{$arrPageData.tpl_data|escape|smarty:nodefaults}--></textarea>
94    <input type="hidden" name="html_area_row" value="<!--{$text_row}-->" />
95    <button type="button" onClick="ChangeSize(this, tpl_data, 50, 13, html_area_row)"><span><!--{if $text_row > 13}-->縮小<!--{else}-->拡大<!--{/if}--></span></button>
96  </div>
97      </td>
98    </tr>
99  </table>
100
101  <div class="btn">
102    <button type='button' name='subm' onclick="fnTargetSelf(); fnFormModeSubmit('form_edit','confirm','','');"><span>登録する</span></button>
103    <button type='button' name='preview' onclick="doPreview(); "><span>プレビュー</span></button>
104  </div>
105
106
107  <h2>編集可能ページ一覧</h2>
108  <table class="list center">
109    <tr>
110      <th>名称</th>
111      <th>レイアウト</th>
112      <th><strong>ページ詳細</strong></th>
113      <th>削除</th>
114    </tr>
115    <!--{foreach key=key item=item from=$arrPageList}-->
116    <tr style="<!--{if $item.page_id == $page_id}-->background-color: <!--{$smarty.const.SELECT_RGB}-->;<!--{/if}-->">
117      <td>
118        <!--{$item.page_name}-->
119      </td>
120      <td>
121        <a href="./<!--{$smarty.const.DIR_INDEX_URL}-->?page_id=<!--{$item.page_id}-->&amp;device_type_id=<!--{$item.device_type_id}-->" >編集</a>
122      </td>
123      <td>
124        <!--{if $item.filename|strlen >= 1}-->
125          <a href="?page_id=<!--{$item.page_id}-->&amp;device_type_id=<!--{$item.device_type_id}-->">編集</a>
126        <!--{/if}-->
127      </td>
128      <td>
129        <!--{if $item.edit_flg == 1}-->
130          <a href="?" onclick="fnTargetSelf(); fnFormModeSubmit('form_edit','delete','page_id',this.name.substr(3));">削除</a>
131          <input type="hidden" value="<!--{$item.page_id}-->" name="del_id<!--{$item.page_id}-->" />
132        <!--{/if}-->
133      </td>
134    </tr>
135    <!--{/foreach}-->
136  </table>
137  <div class="btn addnew">
138    <button type='button' onclick="location.href='http://<!--{$smarty.server.HTTP_HOST}--><!--{$smarty.server.PHP_SELF|escape}-->'"><span>ページを新規入力</span></button>
139  </div>
140
141</form>
Note: See TracBrowser for help on using the repository browser.