mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@400 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
a1e771aa07
commit
0e7f7ead64
3 changed files with 14 additions and 0 deletions
1
modules/admin/tpl/module_info.html
Normal file
1
modules/admin/tpl/module_info.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
haha
|
||||
|
|
@ -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" />
|
||||
|
|
|
|||
|
|
@ -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 모듈 카테고리 목록
|
||||
**/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue