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

This commit is contained in:
zero 2007-03-16 08:36:47 +00:00
parent adb02c1c24
commit f7d06aa737
6 changed files with 65 additions and 82 deletions

View file

@ -9,12 +9,14 @@
// upload_target_srl 는 에디터에서 필수로 달고 다녀야 함....
var $upload_target_srl = 0;
var $component_path = '';
/**
* @brief upload_target_srl 설정;
* @brief upload_target_srl컴포넌트의 경로를 받음
**/
function urllink($upload_target_srl) {
function urllink($upload_target_srl, $component_path) {
$this->upload_target_srl = $upload_target_srl;
$this->component_path = $component_path;
}
/**
@ -36,7 +38,13 @@
* @brief popup window요청시 다시 call이 method. popup window에 출력할 내용을 추가하면 된다
**/
function getPopupContent() {
return "haha";
// 템플릿을 미리 컴파일해서 컴파일된 소스를 return
$tpl_path = $this->component_path.'tpl';
$tpl_file = 'urllink.html';
require_once("./classes/template/TemplateHandler.class.php");
$oTemplate = new TemplateHandler();
return $oTemplate->compile($tpl_path, $tpl_file);
}
}