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

This commit is contained in:
zero 2007-02-21 09:32:43 +00:00
parent 0a7a6bd648
commit 907fefc8af
2 changed files with 15 additions and 1 deletions

View file

@ -38,6 +38,20 @@
* @brief 관리자 메인 페이지 출력
**/
function dispAdminIndex() {
// 선택된 모듈이 있는지 확인
$sid = Context::get('sid');
// 있다면 해당 모듈의 xml_info를 구함
if($sid) {
$oModuleModel = &getModel('module');
$xml_info = $oModuleModel->getModuleXmlInfo($sid);
// management_action이 있는지 확인
$management_action = $xml_info->management_action;
Context::set('tetete', $management_action);
}
$this->setTemplateFile('index');
}

View file

@ -1 +1 @@
haha
{$tetete}