git-svn-id: http://xe-core.googlecode.com/svn/trunk@369 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-12 00:40:00 +00:00
parent 127a6d4191
commit 4f2181d9df
9 changed files with 110 additions and 117 deletions

View file

@ -16,19 +16,25 @@
}
/**
* @brief 모듈 관리자index
* @brief 모듈 관리자 페이지
**/
function dispContent() {
// 모듈모델 객체를 구함
$oModuleModel = &getModel('module');
// 등록된 모듈의 목록을 구해옴
//$installed_module_list = $oModuleModel->getModulesInfo();
Context::set('installed_module_list', $installed_module_list);
// 템플릿 파일 지정
$this->setTemplateFile('index');
}
/**
* @brief 모듈 목록 출력
**/
function dispModuleList() {
// 모듈 목록을 구해서
$oModuleModel = &getModel('module');
$module_list = $oModuleModel->getModuleList();
Context::set('module_list', $module_list);
// 템플릿 파일 지정
$this->setTemplateFile('module_list');
}
}
?>