1. 플래닛 글 위젯에 플래닛 이미지 가로/세로 크기 지정할 수 있도록 긴증 추가. 2. 최근글/최근댓글 위젯의 xe_official 스킨에 날짜 표시 숨기거나 표시하는 기능 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5188 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-12-26 07:58:50 +00:00
parent b492cbd2e6
commit 0d856c90d9
11 changed files with 120 additions and 20 deletions

View file

@ -35,6 +35,12 @@
// 템플릿 파일을 지정
$tpl_file = 'list';
if(!$args->thumbnail_width) $args->thumbnail_width = 50;
if(!$args->thumbnail_height) $args->thumbnail_height = 50;
$widget_info->thumbnail_width = $args->thumbnail_width;
$widget_info->thumbnail_height = $args->thumbnail_height;
Context::set('widget_info', $widget_info);
// 템플릿 컴파일
$oTemplate = &TemplateHandler::getInstance();
$output = $oTemplate->compile($tpl_path, $tpl_file);