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

This commit is contained in:
zero 2007-03-13 08:39:04 +00:00
parent a1e771aa07
commit 0e7f7ead64
3 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1 @@
haha

View file

@ -4,6 +4,7 @@
<action name="dispContent" type="view" standalone="true" admin_index="true" />
<action name="dispModuleList" type="view" standalone="true" />
<action name="dispCategory" type="view" standalone="true" />
<action name="dispModuleInfo" type="view" standalone="true" />
<action name="procInsertCategory" type="controller" standalone="true" />
<action name="procUpdateCategory" type="controller" standalone="true" />

View file

@ -35,6 +35,18 @@
$this->setTemplateFile('module_list');
}
/**
* @brief 모듈의 상세 정보(conf/info.xml) 팝업 출력
**/
function dispModuleInfo() {
// 모듈 목록을 구해서
$oModuleModel = &getModel('module');
$module_info = $oModuleModel->getModuleInfoXml($this->module);
// 템플릿 파일 지정
$this->setTemplateFile('module_info');
}
/**
* @brief 모듈 카테고리 목록
**/