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

This commit is contained in:
zero 2007-02-20 03:15:16 +00:00
parent 2927df6079
commit 242b24d369
6 changed files with 84 additions and 62 deletions

View file

@ -60,7 +60,7 @@
$xml_info = $oModuleModel->getModuleXmlInfo($module);
// 현재 요청된 act가 있으면 $xml_info에서 type을 찾음, 없다면 기본 action을 이용
if(!$act || !$xml_info->{$act}) $act = $xml_info->default_action;
if(!$act || !$xml_info->action->{$act}) $act = $xml_info->default_action;
// type, grant 값 구함
$type = $xml_info->action->{$act}->type;

View file

@ -49,6 +49,7 @@
$this->module = $module_info->module;
$this->module_srl = $module_info->module_srl;
$this->module_info = $module_info;
$this->xml_info = $xml_info;
// 웹서비스에서 꼭 필요한 인증 정보와 권한 설정 체크
$is_logged = Context::get('is_logged');