묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
위젯에서 페이지 수정화면과 결과화면 다르게 보이는 방법은?
2010.02.02 20:44
현재 코드의 일부분은 아래와 같습니다.
// 템플릿의 스킨 경로를 지정 (skin, colorset에 따른 값을 설정)
$tpl_path = sprintf('%sskins/%s', $this->widget_path, $args->skin);
Context::set('colorset', $args->colorset);
// 템플릿 컴파일
$tpl_file = 'list';
$oTemplate = &TemplateHandler::getInstance();
if($vars->act == "dispPageAdminContentModify" || $vars->act == "procWidgetGenerateCodeInPage") {
return $oTemplate->compile($tpl_path, "editor.html");
}
else {
return $oTemplate->compile($tpl_path, $tpl_file);
}
저렇게 하면 페이지 수정중에는 editor.html 이 나와야 하는게 아닌가요?
뭔가 코드가 잘못되었는지..