mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-23 12:22:15 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@214 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
47b535333d
commit
776a5b9dd6
2 changed files with 21 additions and 5 deletions
|
|
@ -13,9 +13,10 @@
|
|||
function init() {
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @brief document_srl로 모듈의 정보르 구함
|
||||
*
|
||||
* 이 경우는 캐시파일을 이용할 수가 없음
|
||||
**/
|
||||
function getModuleInfoByDocumentSrl($document_srl) {
|
||||
// DB 객체 생성
|
||||
|
|
@ -45,8 +46,9 @@
|
|||
if(!$output->data) {
|
||||
$output = $oDB->executeQuery('module.getDefaultMidInfo');
|
||||
}
|
||||
$module_info = $this->arrangeModuleInfo($output->data);
|
||||
|
||||
return $this->arrangeModuleInfo($output->data);
|
||||
return $module_info;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -61,7 +63,9 @@
|
|||
$output = $oDB->executeQuery('module.getMidInfo', $args);
|
||||
if(!$output->data) return;
|
||||
|
||||
return $this->arrangeModuleInfo($output->data);
|
||||
$module_info = $this->arrangeModuleInfo($output->data);
|
||||
|
||||
return $module_info;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue