mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-12 23:12:13 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@369 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
127a6d4191
commit
4f2181d9df
9 changed files with 110 additions and 117 deletions
|
|
@ -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');
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue