관리자 페이지의 바로가기 메뉴를 선택된 언어에 맞게 출력

git-svn-id: http://xe-core.googlecode.com/svn/trunk@1973 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-07-23 02:13:37 +00:00
parent 7968d1aa58
commit cb2254ef96

View file

@ -26,6 +26,15 @@
foreach($list as $val) {
$shortcut_list[$val->module] = $val;
}
// 모듈 목록을 구해와서 숏컷에 해당하는 타이틀을 추출
$oModuleModel = &getModel('module');
$module_list = $oModuleModel->getModuleList();
foreach($module_list as $key => $val) {
$module_name = $val->module;
if($shortcut_list[$module_name]) $shortcut_list[$module_name]->title = $val->title;
}
return $shortcut_list;
}