#275 addon모듈의 확장변수 입력 방식 다양화

- mid_list, select, textarea 타입 추가.
- 기존 호환성을 위해 type이 설정되어 있지 않을 경우 기본 값 'text'

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3261 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
bnu 2007-12-07 18:25:40 +00:00
parent f3e6d2843a
commit 364f7acef0
3 changed files with 51 additions and 6 deletions

View file

@ -39,6 +39,11 @@
$addon_info = $oAddonModel->getAddonInfoXml($selected_addon);
Context::set('addon_info', $addon_info);
// mid 목록을 가져옴
$oModuleModel = &getModel('module');
$mid_list = $oModuleModel->getMidList();
Context::set('mid_list', $mid_list);
// 레이아웃을 팝업으로 지정
$this->setLayoutFile('popup_layout');