mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-02 00:32:15 +09:00
위젯 검출 정규 표현식을 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2892 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
f9896fe51a
commit
90aa62a6ac
993 changed files with 9190 additions and 10457 deletions
|
|
@ -1,12 +1,13 @@
|
|||
@charset "utf-8";
|
||||
|
||||
body { margin:10px; }
|
||||
|
||||
h3 { margin:0 20px 0 20px; }
|
||||
.menuManagement { margin:20px; }
|
||||
|
||||
.menuListZone { table-layout:fixed; }
|
||||
.menuListZone td { vertical-align:top; }
|
||||
.menuListZone td.category_zone { padding-right:10px; }
|
||||
|
||||
#category_list { padding:.5em 0 .5em 0; margin-bottom:2em; }
|
||||
#category_list .checkbox { margin-top:1em; border:0px; }
|
||||
|
||||
#menu_zone_info { background-color:#FFFFFF; z-index:999; display:none; overflow:hidden; padding-left:10px; border-left:1px dashed #CCCCCC; }
|
||||
#category_info { background-color:#FFFFFF; z-index:999; display:none; overflow:hidden; padding-left:10px; border-left:1px dashed #CCCCCC; }
|
||||
#category_list { padding:.5em 0 .5em 0; margin-bottom:2em; width:250px; overflow:hidden; float:left; }
|
||||
#menu_zone_info { margin-left:10px; width:550px; _width:530px; float:left; }
|
||||
*:first-child+html #category_info { width:540px; }
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
<!--%import("js/board_admin.js")-->
|
||||
|
||||
<h3>{$lang->menu} <span class="gray">{$lang->cmd_management}</span></h3>
|
||||
|
||||
<div class="infoText">{nl2br($lang->about_menu)}</div>
|
||||
|
|
|
|||
|
|
@ -2,8 +2,6 @@
|
|||
<!--%import("js/menu_admin.js")-->
|
||||
<!--#include("header.html")-->
|
||||
|
||||
<div class="infoText">{nl2br($lang->about_menu)}</div>
|
||||
|
||||
<!-- 정보 -->
|
||||
<div class="tableSummaryType1">
|
||||
Total <strong>{number_format($total_count)}</strong>, Page <strong>{number_format($page)}</strong>/{number_format($total_page)}
|
||||
|
|
@ -15,7 +13,11 @@
|
|||
</form>
|
||||
|
||||
<!-- 목록 -->
|
||||
<table cellspacing="0" class="tableType1">
|
||||
<table cellspacing="0" class="adminTable">
|
||||
<col width="50" />
|
||||
<col />
|
||||
<col width="100" />
|
||||
<col width="100" />
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">{$lang->no}</th>
|
||||
|
|
|
|||
|
|
@ -77,14 +77,17 @@ function hideCategoryInfo() {
|
|||
function completeGetMenuItemTplInfo(ret_obj, response_tags) {
|
||||
var obj = xGetElementById('menu_zone_info');
|
||||
|
||||
obj.style.marginTop = xScrollTop()+'px';
|
||||
if(xScrollTop()>200) {
|
||||
obj.style.marginTop = xScrollTop()+'px';
|
||||
} else {
|
||||
obj.style.marginTop = '0px';
|
||||
}
|
||||
|
||||
var tpl = ret_obj['tpl'];
|
||||
xInnerHtml(obj, tpl);
|
||||
obj.style.display = 'block';
|
||||
|
||||
var fo_obj = xGetElementById("fo_menu");
|
||||
fo_obj.menu_name.focus();
|
||||
|
||||
/*
|
||||
var x = _xPos + 50;
|
||||
|
|
|
|||
|
|
@ -4,7 +4,9 @@
|
|||
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, insert_menu)">
|
||||
|
||||
<table cellspacing="0" class="tableType2 gap1">
|
||||
<table cellspacing="0" class="adminTable">
|
||||
<col width="150" />
|
||||
<col />
|
||||
<tr>
|
||||
<th scope="col">{$lang->cmd_menu_insert}</th>
|
||||
<td>{nl2br($lang->about_menu_management)}</td>
|
||||
|
|
@ -12,15 +14,15 @@
|
|||
<tr>
|
||||
<th scope="col">{$lang->title}</th>
|
||||
<td>
|
||||
<input type="text" name="title" value="{$menu_info->title}" class="inputTypeText" />
|
||||
<input type="text" name="title" value="{$menu_info->title}" class="inputTypeText w400" />
|
||||
<p>{$lang->about_title}</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="col" colspan="2" class="button">
|
||||
<span class="button"><input type="submit" value="{$lang->cmd_submit}" accesskey="s" /></span>
|
||||
</th>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<!-- 버튼 -->
|
||||
<div class="tRight gap1">
|
||||
<span class="button"><input type="submit" value="{$lang->cmd_submit}" accesskey="s" /></span>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
|
|
|||
|
|
@ -1,24 +1,28 @@
|
|||
<input type="hidden" name="menu_item_srl" value="{$item_info->menu_item_srl}" />
|
||||
<input type="hidden" name="parent_srl" value="{$item_info->parent_srl}" />
|
||||
|
||||
<table cellspacing="0" class="tableType2">
|
||||
<col width="140" />
|
||||
<table cellspacing="0" class="adminTable">
|
||||
<col width="80" />
|
||||
<col width="80" />
|
||||
<col width="*" />
|
||||
<!--@if($item_info->parent_menu_name)-->
|
||||
<tr>
|
||||
<th scope="row">{$lang->parent_menu_name}</th>
|
||||
<td>{$item_info->parent_menu_name}</td>
|
||||
<th scope="row" colspan="2">{$lang->parent_menu_name}</th>
|
||||
<td>{$item_info->parent_menu_name[$lang_type]}</td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
|
||||
{@ $_row = 0;}
|
||||
<!--@foreach($lang_supported as $key => $val)-->
|
||||
<tr>
|
||||
<!--@if($_row==0)--><th scope="row" scope="row" rowspan="{count($lang_supported)}">{$lang->menu_name}</th><!--@end-->
|
||||
<th>{$val}</th>
|
||||
<td><input type="text" name="menu_name_{$key}" value="{htmlspecialchars($item_info->name[$key])}" class="inputTypeText"/></td>
|
||||
{@ $_row ++ }
|
||||
</tr>
|
||||
<!--@end-->
|
||||
<tr>
|
||||
<th scope="row" scope="row">{$lang->menu_name}</th>
|
||||
<td>
|
||||
<input type="text" name="menu_name" value="{htmlspecialchars($item_info->name)}" class="inputTypeText"/>
|
||||
<p>{$lang->about_menu_name}</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->menu_url}</th>
|
||||
<th scope="row" colspan="2">{$lang->menu_url}</th>
|
||||
<td>
|
||||
<input type="text" name="menu_url" value="{htmlspecialchars($item_info->url)}" class="inputTypeText" />
|
||||
<a href="{getUrl('module','menu','act','dispMenuAdminMidList')}" onclick="popopen(this.href);return false;" class="button"/><span>{$lang->cmd_search_mid}</span></a>
|
||||
|
|
@ -26,37 +30,37 @@
|
|||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->menu_open_window}</th>
|
||||
<th scope="row" colspan="2">{$lang->menu_open_window}</th>
|
||||
<td>
|
||||
<input type="checkbox" name="menu_open_window" value="Y" <!--@if($item_info->open_window=="Y")-->checked="checked"<!--@end--> />
|
||||
<p>{$lang->about_menu_open_window}</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->menu_expand}</th>
|
||||
<th scope="row" colspan="2">{$lang->menu_expand}</th>
|
||||
<td>
|
||||
<input type="checkbox" name="menu_expand" value="Y" <!--@if($item_info->expand=="Y")-->checked="checked"<!--@end--> />
|
||||
<p>{$lang->about_menu_expand}</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->menu_img_btn}</th>
|
||||
<th scope="row" colspan="2">{$lang->menu_img_btn}</th>
|
||||
<td>{$lang->about_menu_img_btn}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->menu_normal_btn}</th>
|
||||
<th scope="row" colspan="2">{$lang->menu_normal_btn}</th>
|
||||
<td><input type="text" name="menu_normal_btn" value="{htmlspecialchars($item_info->normal_btn)}" class="inputTypeText" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->menu_hover_btn}</th>
|
||||
<th scope="row" colspan="2">{$lang->menu_hover_btn}</th>
|
||||
<td><input type="text" name="menu_hover_btn" value="{htmlspecialchars($item_info->hover_btn)}" class="inputTypeText" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->menu_active_btn}</th>
|
||||
<th scope="row" colspan="2">{$lang->menu_active_btn}</th>
|
||||
<td><input type="text" name="menu_active_btn" value="{htmlspecialchars($item_info->active_btn)}" class="inputTypeText" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->menu_group_srls}</th>
|
||||
<th scope="row" colspan="2">{$lang->menu_group_srls}</th>
|
||||
<td>
|
||||
<!--@foreach($group_list as $key=>$val)-->
|
||||
<input type="checkbox" name="group_srls" value="{$key}" id="group_{$key}" <!--@if(is_array($item_info->group_srls)&&in_array($key, $item_info->group_srls))-->checked="checked"<!--@end-->/>
|
||||
|
|
@ -65,18 +69,17 @@
|
|||
<p>{$lang->about_menu_group_srls}</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row" colspan="3" class="button">
|
||||
<!--@if($item_info->name)-->
|
||||
<a href="#" onclick="doDeleteMenuItem('{$menu_item_srl}');return false" class="button"><span>{$lang->cmd_delete}</span></a>
|
||||
<!--@end-->
|
||||
<a href="#" onclick="hideCategoryInfo();return false" class="button"><span>{$lang->cmd_close}</span></a>
|
||||
<span class="button"><input type="submit" value="{$lang->cmd_save}" /></span>
|
||||
<!--@if($item_info->name)-->
|
||||
<a href="#" onclick="doInsertMenuItem('{$item_info->menu_item_srl}');return false" class="button"><span>{$lang->cmd_make_child}</span></a>
|
||||
<!--@end-->
|
||||
</th>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div class="fl gap1">
|
||||
<!--@if($item_info->name)-->
|
||||
<a href="#" onclick="doDeleteMenuItem('{$menu_item_srl}');return false" class="button"><span>{$lang->cmd_delete}</span></a>
|
||||
<!--@end-->
|
||||
<a href="#" onclick="hideCategoryInfo();return false" class="button"><span>{$lang->cmd_close}</span></a>
|
||||
</div>
|
||||
|
||||
<div class="fr gap1">
|
||||
<span class="button"><input type="submit" value="{$lang->cmd_save}" /></span>
|
||||
<!--@if($item_info->name)-->
|
||||
<a href="#" onclick="doInsertMenuItem('{$item_info->menu_item_srl}');return false" class="button"><span>{$lang->cmd_make_child}</span></a>
|
||||
<!--@end-->
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,6 @@
|
|||
<!--%import("filter/move_menu_item.xml")-->
|
||||
<!--%import("css/menu.css")-->
|
||||
<!--%import("js/menu_admin.js")-->
|
||||
<!--#include("header.html")-->
|
||||
|
||||
<div class="menuManagement">
|
||||
|
||||
|
|
@ -18,7 +17,10 @@
|
|||
<!--@if($module == 'admin')-->
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, update_menu_title)">
|
||||
<input type="hidden" name="menu_srl" value="{$menu_info->menu_srl}" />
|
||||
<table cellspacing="0" class="tableType3">
|
||||
<table cellspacing="0" class="adminTable">
|
||||
<col width="150" />
|
||||
<col />
|
||||
<caption>{$lang->menu} {$lang->cmd_management}</caption>
|
||||
<tr>
|
||||
<th scope="col">{$lang->title}</th>
|
||||
<td>
|
||||
|
|
@ -39,7 +41,7 @@
|
|||
</form>
|
||||
|
||||
<!--@else-->
|
||||
<table cellspacing="0" class="tableType3">
|
||||
<table cellspacing="0" class="adminTable">
|
||||
<tr>
|
||||
<th scope="col">{$lang->title}</th>
|
||||
<td class="left">
|
||||
|
|
@ -53,6 +55,15 @@
|
|||
</table>
|
||||
<!--@end-->
|
||||
|
||||
<div class="gap1">
|
||||
<a href="#" onclick="doInsertMenuItem(0);return false;" class="button"><span>{$lang->cmd_insert}</span></a>
|
||||
<a href="#" onclick="doReloadTreeMenu('{$menu_info->menu_srl}');return false;" class="button"><span>{$lang->cmd_remake_cache}</span></a>
|
||||
<a href="#" onclick="openAllTreeMenu('menu');return false;" class="button"><span>{$lang->cmd_open_all}</span></a>
|
||||
<a href="#" onclick="closeAllTreeMenu('menu');return false;" class="button"><span>{$lang->cmd_close_all}</span></a>
|
||||
</div>
|
||||
|
||||
<p class="gap1"><input type="checkbox" id="menu_enable_move" class="checkbox" /> <label for="menu_enable_move">{$lang->cmd_enable_move_menu}</label></p>
|
||||
|
||||
<div class="gap1">
|
||||
<form id="fo_menu" action="./" method="get" onsubmit="return procFilter(this, insert_menu_item)" class="clear">
|
||||
<input type="hidden" name="title" value="{$menu_info->title}" />
|
||||
|
|
@ -60,26 +71,12 @@
|
|||
<input type="hidden" name="xml_file" value="{$menu_info->xml_file}" />
|
||||
<input type="hidden" name="php_file" value="{$menu_info->php_file}" />
|
||||
|
||||
<table class="menuListZone">
|
||||
<tr>
|
||||
<td class="category_zone">
|
||||
<div id="category_list">
|
||||
<div id="menu_zone_menu"></div>
|
||||
<p><input type="checkbox" id="menu_enable_move" class="checkbox" /> <label for="menu_enable_move">{$lang->cmd_enable_move_menu}</label></p>
|
||||
</div>
|
||||
</td>
|
||||
<td class="menu_zone">
|
||||
<div id="menu_zone_info"></div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div class="fl gap1">
|
||||
<a href="#" onclick="doInsertMenuItem(0);return false;" class="button"><span>{$lang->cmd_insert}</span></a>
|
||||
<a href="#" onclick="openAllTreeMenu('menu');return false;" class="button"><span>{$lang->cmd_open_all}</span></a>
|
||||
<a href="#" onclick="closeAllTreeMenu('menu');return false;" class="button"><span>{$lang->cmd_close_all}</span></a>
|
||||
<a href="#" onclick="doReloadTreeMenu('{$menu_info->menu_srl}');return false;" class="button"><span>{$lang->cmd_remake_cache}</span></a>
|
||||
<div id="category_list">
|
||||
<div id="menu_zone_menu"></div>
|
||||
</div>
|
||||
<div id="menu_zone_info"></div>
|
||||
|
||||
|
||||
</form>
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,11 @@
|
|||
<input type="hidden" name="module" value="{$module}" />
|
||||
<input type="hidden" name="act" value="{$act}" />
|
||||
|
||||
<table cellspacing="0" class="tableType5">
|
||||
<table cellspacing="0" class="adminTable">
|
||||
<col />
|
||||
<col />
|
||||
<col />
|
||||
<col width="50" />
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="row" colspan="2" class="nowrap">
|
||||
|
|
@ -24,7 +28,7 @@
|
|||
<option value="{$val->module}" <!--@if($target_module ==$val->module)-->selected="selected"<!--@end-->>{$val->module}</option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
<span class="button"><input type="submit" name="go_button" value="GO" /></span>
|
||||
<input type="submit" name="go_button" id="go_button" value="GO" class="buttonTypeGo" />
|
||||
</th>
|
||||
<th scope="row">{$lang->mid}</th>
|
||||
<th scope="row">{$lang->cmd_select}</th>
|
||||
|
|
@ -42,7 +46,7 @@
|
|||
</td>
|
||||
<td class="tahoma">{$val->module}</td>
|
||||
<td class="tahoma">{$val->browser_title} ({$key})</td>
|
||||
<td class="blue tCenter"><a href="#" onclick="doInsertMid('{$key}','{$menu_id}'); return false;">{$lang->cmd_select}</a></td>
|
||||
<td class="blue"><a href="#" onclick="doInsertMid('{$key}','{$menu_id}'); return false;">{$lang->cmd_select}</a></td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
</tbody>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue