rhymix/widgets/sms/sms.class.php
bnu f875e5f33f widget - dev version
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6737 201d5d3c-b55e-5fd7-737f-ddc643e51545
2009-08-07 07:42:58 +00:00

18 lines
491 B
PHP

<?php
class sms extends WidgetHandler {
function proc($args) {
// 템플릿의 스킨 경로를 지정 (skin, colorset에 따른 값을 설정)
$tpl_path = sprintf('%sskins/%s', $this->widget_path, $args->skin);
Context::set('colorset', $args->colorset);
// 템플릿 파일을 지정
$tpl_file = 'sms_widget';
Context::set('sms_info', $args);
// 템플릿 컴파일
$oTemplate = &TemplateHandler::getInstance();
return $oTemplate->compile($tpl_path, $tpl_file);
}
}