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

This commit is contained in:
zero 2007-03-27 10:25:21 +00:00
parent 5309a20e13
commit 1f0bbce146
4 changed files with 5 additions and 37 deletions

View file

@ -28,9 +28,6 @@
// 요청방식에 따라 출력을 별도로
if(Context::getResponseMethod()!="XMLRPC") {
// 각 플러그인, 에디터 컴포넌트의 코드 변경
$oContext = &Context::getInstance();
$content = $oContext->transContent($content);
Context::set('content', $content);
// 레이아웃을 컴파일
@ -38,6 +35,10 @@
$oTemplate = new TemplateHandler();
$zbxe_final_content = $oTemplate->compile($oModule->getLayoutPath(), $oModule->getLayoutFile());
// 각 플러그인, 에디터 컴포넌트의 코드 변경
$oContext = &Context::getInstance();
$zbxe_final_content= $oContext->transContent($zbxe_final_content);
// 최종 결과를 common_layout에 넣어버림
Context::set('zbxe_final_content', $zbxe_final_content);
$output = $oTemplate->compile('./common/tpl', 'common_layout');