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

This commit is contained in:
zero 2007-03-13 07:42:45 +00:00
parent f3574368ce
commit 697b5bd1db
4 changed files with 9 additions and 5 deletions

View file

@ -43,9 +43,6 @@
$buff = sprintf('<?if(!__ZB5__)exit(); %s ?>', $buff);
FileHandler::writeFile($this->cache_file, $buff);
// 페이지를 애드온 목록으로 이동
$this->setRedirectUrl("./?module=admin&act=dispAddonList");
}
/**

View file

@ -14,6 +14,13 @@
$this->setTemplatePath($this->module_path.'tpl.admin');
}
/**
* @brief 애드온 관리 메인 페이지
**/
function dispIndex() {
$this->dispAddonList();
}
/**
* @brief 애드온 목록을 보여줌
**/

View file

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<module>
<actions>
<action name="dispIndex" type="view" standalone="true" admin_index="true" />
<action name="procToggleActivateAddon" type="controller" standalone="true" />
</actions>
</module>

View file

@ -19,8 +19,7 @@
* @brief 모듈 관리자 페이지
**/
function dispContent() {
// 템플릿 파일 지정
$this->setTemplateFile('index');
$this->dispModuleList();
}
/**