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

This commit is contained in:
zero 2007-03-26 09:47:31 +00:00
parent 4c0653db24
commit 2a32a18709
7 changed files with 59 additions and 1 deletions

View file

@ -43,6 +43,22 @@
$this->setLayoutFile("popup_layout");
}
/**
* @brief 컴퍼넌트 정보 보기
**/
function viewComponentInfo() {
$component_name = Context::get('component_name');
$oEditorModel = &getModel('editor');
$component = $oEditorModel->getComponent($component_name);
Context::set('component', $component);
$this->setTemplatePath($this->module_path.'tpl');
$this->setTemplateFile('view_component');
$this->setLayoutFile("popup_layout");
}
/**
* @brief 에디터를 return
**/
@ -74,6 +90,9 @@
* @brief 컴포넌트의 팝업 출력을 요청을 받는 action
**/
function dispPopup() {
// css 파일 추가
Context::addCssFile($this->module_path."tpl/css/editor.css");
// 변수 정리
$upload_target_srl = Context::get('upload_target_srl');
$component = Context::get('component');