개별 플래닛에서 action forward 가 호출될때 레이아웃이 사라지는 현상 제거 (플래닛 모듈 업데이트 필요)

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6296 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-05-07 04:49:48 +00:00
parent d93c380843
commit 56dbc7a996
3 changed files with 25 additions and 4 deletions

View file

@ -871,6 +871,17 @@
return new Object();
}
/**
* @brief 개별 플래닛에서 forward action이 실행될때 레이아웃 정보를 메인 플래닛과 맞춰주는 trigger
**/
function triggerSetLayout(&$module_info) {
if($module_info->module!='planet') return new Object();
$oPlanetModel = &getModel('planet');
$planet_config = $oPlanetModel->getPlanetConfig();
$module_info->layout_srl = $planet_config->layout_srl;
return new Object();
}
}
?>