mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
48 lines
1.8 KiB
HTML
48 lines
1.8 KiB
HTML
<!--%import("css/admin.css")-->
|
|
<!--%import("js/admin.js")-->
|
|
|
|
<!--#include("./common/tpl/common_header.html")-->
|
|
|
|
<div id="admin_title">
|
|
<a href="./?module=admin">zeroboard XE</a>
|
|
</div>
|
|
|
|
<div id="admin_sub_menu">
|
|
<a href="{getUrl('act','dispLogout')}">{$lang->cmd_logout}</a>
|
|
</div>
|
|
|
|
<div id="admin_main_menu">
|
|
<!-- 자주 쓰이는 모듈의 경우 별도 등록을 함 -->
|
|
<div>
|
|
<span <!--@if($mo=='board')-->class="selected"<!--@end-->>
|
|
<a href="#" onclick="location.href='{getUrl('','module', $module, 'act','dispAdminContent','mo','board','module_srl','')}'">{$lang->board_manager}</a>
|
|
</span>
|
|
<span <!--@if($mo=='member')-->class="selected"<!--@end-->>
|
|
<a href="#" onclick="location.href='{getUrl('','module', $module, 'act','dispAdminContent','mo','member','module_srl','')}'">{$lang->member_manager}</a>
|
|
</span>
|
|
<span <!--@if($mo=='layout')-->class="selected"<!--@end-->>
|
|
<a href="#" onclick="location.href='{getUrl('','module', $module, 'act','dispContent','mo','layout','module_srl','')}'">{$lang->layout_manager}</a>
|
|
</span>
|
|
</div>
|
|
|
|
<!-- 애드온,플러그인,레이아웃,에디터컴포넌트등의 목록을 보여줄 메뉴 -->
|
|
<div>
|
|
<!--@foreach($menu_item as $key => $val)-->
|
|
<span <!--@if($act==$val->act)-->class="selected"<!--@end-->>
|
|
<a href="#" onclick="location.href='{getUrl('','module', $module, 'act',$val->act,'mo','','module_srl','')}'">{$val->title}</a>
|
|
</span>
|
|
<!--@end-->
|
|
</div>
|
|
</div>
|
|
|
|
<!--@if($selected_module_info)-->
|
|
<div id="admin_module_info">
|
|
<a href="#" onclick="location.href='{getUrl('','module', $module, 'mo', $mo, 'act', $selected_module_info->admin_index_act)}'">{$selected_module_info->title}</a> (ver {$selected_module_info->version})
|
|
</div>
|
|
<!--@end-->
|
|
|
|
<div id="admin_content">
|
|
{$content}
|
|
</div>
|
|
|
|
<!--#include("./common/tpl/common_footer.html")-->
|