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

This commit is contained in:
zero 2007-02-15 07:07:34 +00:00
parent d79fe110de
commit 0dbaa1e40b
4 changed files with 474 additions and 523 deletions

View file

@ -2,9 +2,31 @@
/**
* @class moduleView
* @author zero (zero@nzeo.com)
* @brief 모듈의 view class
* @brief module 모듈의 View class
**/
class moduleView
class moduleView extends Module {
/**
* @brief 초기화
**/
function init() {
}
/**
* @brief 모듈 목록을 출력
**/
function dispContent() {
// 모듈모델 객체를 구함
$oModuleModel = getModule('module','model');
// 등록된 모듈의 목록을 구해옴
$installed_module_list = $oModuleModel->getModulesInfo();
Context::set('installed_module_list', $installed_module_list);
// 템플릿 파일 지정
$this->setTemplateFile('index');
}
}
?>