mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-29 08:09:58 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1172 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
d0a341ec95
commit
d08a5b7787
10 changed files with 192 additions and 112 deletions
57
modules/menu/tpl/menu_management.html
Normal file
57
modules/menu/tpl/menu_management.html
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
<!--%import("filter/insert_menu_item.xml")-->
|
||||
<!--%import("filter/delete_menu_item.xml")-->
|
||||
<!--%import("filter/move_menu_item.xml")-->
|
||||
<!--%import("js/menu_admin.js")-->
|
||||
|
||||
<!-- 메뉴 이동을 위해 임시로 사용하는 form -->
|
||||
<form id="fo_move_menu" action="./" method="get">
|
||||
<input type="hidden" name="source_node_srl" />
|
||||
<input type="hidden" name="target_node_srl" />
|
||||
</form>
|
||||
|
||||
|
||||
<div style="margin-bottom:10px;">
|
||||
<table border="1" width="100%">
|
||||
<tr>
|
||||
<th>{$lang->title}</th>
|
||||
<td>{$menu_info->title}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->menu_management}</th>
|
||||
<td>{nl2br($lang->about_menu_management)}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<form id="fo_menu" action="./" method="get" onsubmit="return procFilter(this, insert_menu)">
|
||||
<input type="hidden" name="menu_srl" value="{$menu_info->menu_srl}" />
|
||||
<input type="hidden" name="xml_file" value="{$menu_info->xml_file}" />
|
||||
<input type="hidden" name="php_file" value="{$menu_info->php_file}" />
|
||||
|
||||
<table border="1" width="100%">
|
||||
<col width="300" />
|
||||
<col width="*" />
|
||||
<tr valign="top">
|
||||
<td>
|
||||
<div id="menu_zone_menu"></div>
|
||||
<div>
|
||||
<input type="checkbox" id="menu_enable_move" /> <label for="menu_enable_move">{$lang->cmd_enable_move_menu}</label>
|
||||
</div>
|
||||
<div>
|
||||
<input type="button" value="{$lang->cmd_insert}" onclick="doInsertLayoutMenuItem('{$menu_info->menu_srl}');return false;" />
|
||||
<input type="button" value="{$lang->cmd_open_all}" onclick="openAllTreeMenu('menu');return false;" />
|
||||
<input type="button" value="{$lang->cmd_close_all}" onclick="closeAllTreeMenu('menu');return false;" />
|
||||
<input type="button" value="{$lang->cmd_remake_cache}" onclick="doReloadTreeMenu('menu');return false;" />
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div id="menu_zone_info"></div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
|
||||
<script type="text/javascript">
|
||||
loadTreeMenu("{$menu_info->xml_file}", "menu", "menu_zone_menu", "{$menu_info->title}", doGetMenuItemInfo, 0, doMoveTree);
|
||||
</script>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue