mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-19 19:29:56 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@813 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
ad822f2fc0
commit
9b79db480a
42 changed files with 298 additions and 293 deletions
|
|
@ -1,33 +0,0 @@
|
|||
/**
|
||||
* @file : modules/module/js/admin.js
|
||||
* @author : zero <zero@nzeo.com>
|
||||
* @desc : module 모듈의 관리자용 javascript
|
||||
**/
|
||||
|
||||
/* 카테고리 관련 작업들 */
|
||||
function doUpdateCategory(module_category_srl, mode, message) {
|
||||
if(typeof(message)!='undefined'&&!confirm(message)) return;
|
||||
|
||||
var fo_obj = xGetElementById('fo_category_info');
|
||||
fo_obj.module_category_srl.value = module_category_srl;
|
||||
fo_obj.mode.value = mode;
|
||||
|
||||
procFilter(fo_obj, update_category);
|
||||
}
|
||||
|
||||
/* 카테고리 정보 수정 후 */
|
||||
function completeUpdateCategory(ret_obj) {
|
||||
var error = ret_obj['error'];
|
||||
var message = ret_obj['message'];
|
||||
alert(message);
|
||||
|
||||
var url = "./?module=admin&mo=module&act=dispCategory";
|
||||
location.href = url;
|
||||
}
|
||||
|
||||
/* 선택된 모듈을 관리자 메뉴의 바로가기에 등록 */
|
||||
function doAddShortCut(module) {
|
||||
var fo_obj = xGetElementById("fo_shortcut");
|
||||
fo_obj.selected_module.value = module;
|
||||
procFilter(fo_obj, insert_shortcut);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue