mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-29 16:19:58 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@714 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
9be7431441
commit
ac867a2495
4 changed files with 10 additions and 6 deletions
|
|
@ -14,7 +14,6 @@
|
||||||
* <div plugin='플러그인'...></div> 태그 사용 templateHandler에서 PluginHandler::execute()를 실행하는 코드로 대체하게 된다
|
* <div plugin='플러그인'...></div> 태그 사용 templateHandler에서 PluginHandler::execute()를 실행하는 코드로 대체하게 된다
|
||||||
**/
|
**/
|
||||||
function execute($plugin, $args) {
|
function execute($plugin, $args) {
|
||||||
|
|
||||||
// $plugin의 객체를 받음
|
// $plugin의 객체를 받음
|
||||||
$oPlugin = PluginHandler::getObject($plugin);
|
$oPlugin = PluginHandler::getObject($plugin);
|
||||||
if(!$oPlugin) return;
|
if(!$oPlugin) return;
|
||||||
|
|
|
||||||
|
|
@ -29,6 +29,7 @@ function doDisplaySkinColorset(sel) {
|
||||||
var skin = sel.options[sel.selectedIndex].value;
|
var skin = sel.options[sel.selectedIndex].value;
|
||||||
if(!skin) {
|
if(!skin) {
|
||||||
xGetElementById("colorset_area").style.display = "none";
|
xGetElementById("colorset_area").style.display = "none";
|
||||||
|
setFixedPopupSize();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -55,4 +56,5 @@ function completeGetSkinColorset(ret_obj) {
|
||||||
}
|
}
|
||||||
|
|
||||||
xGetElementById("colorset_area").style.display = "block";
|
xGetElementById("colorset_area").style.display = "block";
|
||||||
|
setFixedPopupSize();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
<!--%import("js/admin.js")-->
|
<!--%import("js/admin.js")-->
|
||||||
<!--%import("css/plugin.css")-->
|
<!--%import("css/plugin.css")-->
|
||||||
|
|
||||||
<form action="./" method="get" onsubmit="return procFilter(this, generate_code_in_page);">
|
<form action="./" method="get" onsubmit="return procFilter(this, generate_code_in_page);" id="fo_plugin">
|
||||||
<input type="hidden" name="selected_plugin" value="{$selected_plugin}" />
|
<input type="hidden" name="selected_plugin" value="{$selected_plugin}" />
|
||||||
<input type="hidden" name="module_srl" value="{$module_srl}" />
|
<input type="hidden" name="module_srl" value="{$module_srl}" />
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -31,16 +31,19 @@
|
||||||
$oDocumentModel = &getModel('document');
|
$oDocumentModel = &getModel('document');
|
||||||
$output = $oDocumentModel->getDocumentList($obj);
|
$output = $oDocumentModel->getDocumentList($obj);
|
||||||
|
|
||||||
// 템플릿 파일을 지정
|
|
||||||
$tpl_path = $this->plugin_path.'skins/default';
|
|
||||||
$tpl_file = 'list';
|
|
||||||
|
|
||||||
// 템플릿 파일에서 사용할 변수들을 세팅
|
// 템플릿 파일에서 사용할 변수들을 세팅
|
||||||
if(count($mid_list)==1) Context::set('module_name', $mid_list[0]);
|
if(count($mid_list)==1) Context::set('module_name', $mid_list[0]);
|
||||||
Context::set('title', $title);
|
Context::set('title', $title);
|
||||||
Context::set('style', $args->style);
|
Context::set('style', $args->style);
|
||||||
Context::set('document_list', $output->data);
|
Context::set('document_list', $output->data);
|
||||||
|
|
||||||
|
// 템플릿의 스킨 경로를 지정 (skin, colorset에 따른 값을 설정)
|
||||||
|
$tpl_path = sprintf('%sskins/%s', $this->plugin_path, $args->skin);
|
||||||
|
Context::set('colorset', $args->colorset);
|
||||||
|
|
||||||
|
// 템플릿 파일을 지정
|
||||||
|
$tpl_file = 'list';
|
||||||
|
|
||||||
// 템플릿 컴파일
|
// 템플릿 컴파일
|
||||||
$oTemplate = new TemplateHandler();
|
$oTemplate = new TemplateHandler();
|
||||||
return $oTemplate->compile($tpl_path, $tpl_file);
|
return $oTemplate->compile($tpl_path, $tpl_file);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue