mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@862 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
9c582a571e
commit
6bb189a34b
48 changed files with 705 additions and 720 deletions
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/admin.js")-->
|
||||
<!--%import("js/page_admin.js")-->
|
||||
|
||||
<!-- 페이지 정보 -->
|
||||
<div>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
/**
|
||||
* @file modules/page/js/admin.js
|
||||
* @file modules/page/js/page_admin.js
|
||||
* @author zero (zero@nzeo.com)
|
||||
* @desc page모듈의 관리자용 javascript
|
||||
* @brief page모듈의 관리자용 javascript
|
||||
**/
|
||||
|
||||
/* 모듈 생성 후 */
|
||||
|
|
@ -14,8 +14,8 @@ function completeInsertPage(ret_obj) {
|
|||
|
||||
alert(message);
|
||||
|
||||
var url = "./?module=admin&module_srl="+module_srl+"&act=dispPageAdminInfo";
|
||||
if(page) url += "&page="+page;
|
||||
var url = location.href.setQuery('module_srl',module_srl).setQuery('act','dispPageAdminInfo');
|
||||
if(page) url = url.setQuery('page',page);
|
||||
|
||||
location.href = url;
|
||||
}
|
||||
|
|
@ -28,8 +28,8 @@ function completeDeletePage(ret_obj) {
|
|||
var page = ret_obj['page'];
|
||||
alert(message);
|
||||
|
||||
var url = "./?module=admin&act=dispPageAdminContent";
|
||||
if(page) url += "&page="+page;
|
||||
var url = location.href.setQuery('act','dispPageAdminContent');
|
||||
if(page) url = url.setQuery('page',page);
|
||||
|
||||
location.href = url;
|
||||
}
|
||||
|
|
@ -38,5 +38,5 @@ function completeDeletePage(ret_obj) {
|
|||
function doChangeCategory(sel_obj, url) {
|
||||
var module_category_srl = sel_obj.options[sel_obj.selectedIndex].value;
|
||||
if(!module_category_srl) location.href=url;
|
||||
else location.href=url+'&module_category_srl='+module_category_srl;
|
||||
else location.href = location.href.setQuery('module_category_srl',module_category_srl);
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
<!--%import("filter/delete_page.xml")-->
|
||||
<!--%import("js/admin.js")-->
|
||||
<!--%import("js/page_admin.js")-->
|
||||
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, delete_page)">
|
||||
<input type="hidden" name="page" value="{$page}" />
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!--%import("filter/insert_page.xml")-->
|
||||
<!--%import("js/admin.js")-->
|
||||
<!--%import("js/page_admin.js")-->
|
||||
|
||||
<div>
|
||||
<!--@if(!$module_srl)-->
|
||||
|
|
@ -73,7 +73,7 @@
|
|||
<th>{$lang->plugin}</th>
|
||||
<td>
|
||||
<!--@foreach($plugin_list as $plugin)-->
|
||||
<a href="#" onclick="winopen('./?module=plugin&act=dispPluginGenerateCodeInPage&selected_plugin={$plugin->plugin}&module_srl={$module_srl}','GenerateCodeInPage','left=10,top10,width=10,height=10,resizable=no,scrollbars=no,toolbars=no');return false;">{$plugin->title}</a>
|
||||
<a href="#" onclick="popopen('./?module=plugin&act=dispPluginGenerateCodeInPage&selected_plugin={$plugin->plugin}&module_srl={$module_srl}','GenerateCodeInPage');return false;">{$plugin->title}</a>
|
||||
<!--@end-->
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue