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

This commit is contained in:
zero 2007-03-05 04:20:40 +00:00
parent b60c71d589
commit 120be5cf60
11 changed files with 300 additions and 11 deletions

View file

@ -66,7 +66,7 @@
* @brief 모듈의 목록을 보여줌
**/
function dispModuleList() {
// 관리자 모듈 목록을 세팅
// 모듈 목록을 세팅
$oAdminModel = &getModel('admin');
$module_list = $oAdminModel->getModuleList();
Context::set('module_list', $module_list);
@ -74,6 +74,18 @@
$this->setTemplateFile('module_list');
}
/**
* @brief 애드온의 목록을 보여줌
**/
function dispAddonList() {
// 애드온 목록을 세팅
$oAdminModel = &getModel('admin');
$addon_list = $oAdminModel->getAddonList();
Context::set('addon_list', $addon_list);
$this->setTemplateFile('addon_list');
}
/**
* @brief 관리자 로그인 페이지 출력
**/