git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5894 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
misol 2009-03-17 15:24:01 +00:00
parent 2fde39c2d9
commit 937fbcc743
3 changed files with 11 additions and 1 deletions

View file

@ -80,6 +80,11 @@
* @brief 파일 설정 정보를 구함
**/
function getFileConfig($module_srl = null) {
// module_srl이 없으면 현재 모듈
if(!$module_srl) {
$current_module_info = Context::get('current_module_info');
$module_srl = $current_module_info->module_srl;
}
// 설정 정보를 받아옴 (module model 객체를 이용)
$oModuleModel = &getModel('module');