mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
107 lines
3.9 KiB
PHP
107 lines
3.9 KiB
PHP
<?php
|
|
/**
|
|
* @class WidgetHandler
|
|
* @author zero (zero@nzeo.com)
|
|
* @brief 위젯의 실행을 담당
|
|
**/
|
|
|
|
class WidgetHandler {
|
|
|
|
var $widget_path = '';
|
|
|
|
/**
|
|
* @brief 위젯 캐시 처리
|
|
**/
|
|
function getCache($sequence, $cache) {
|
|
if(!$sequence || !$cache) return;
|
|
|
|
$cache_path = './files/cache/widget_cache/';
|
|
if(!is_dir($cache_path)) {
|
|
FileHandler::makeDir($cache_path);
|
|
return;
|
|
}
|
|
|
|
$cache_file = sprintf('%s%d.%s.cache', $cache_path, $sequence, Context::getLangType());
|
|
if(!file_exists($cache_file)) return;
|
|
|
|
$filectime = filectime($cache_file);
|
|
if($filectime + $cache*60 < time()) return;
|
|
|
|
$output = FileHandler::readFile($cache_file);
|
|
return $output;
|
|
}
|
|
|
|
/**
|
|
* @brief 위젯을 찾아서 실행하고 결과를 출력
|
|
* <div widget='위젯'...></div> 태그 사용 templateHandler에서 WidgetHandler::execute()를 실행하는 코드로 대체하게 된다
|
|
**/
|
|
function execute($widget, $args) {
|
|
// 디버그를 위한 위젯 실행 시간 저장
|
|
if(__DEBUG__==3) $start = getMicroTime();
|
|
|
|
// $widget의 객체를 받음
|
|
$oWidget = WidgetHandler::getObject($widget);
|
|
|
|
// 위젯 실행
|
|
if($oWidget) {
|
|
$output = $oWidget->proc($args);
|
|
}
|
|
|
|
if($args->widget_fix_width == 'Y') {
|
|
$style = "";
|
|
|
|
$style .= sprintf("%s:%spx;", "width", trim($args->widget_width));
|
|
$style .= sprintf("margin:%dpx %dpx %dpx %dpx;", $args->widget_margin_top, $args->widget_margin_right,$args->widget_margin_bottom,$args->widget_margin_left);
|
|
if($args->widget_position) {
|
|
$style .= sprintf("%s:%s;", "float", trim($args->widget_position));
|
|
$output = sprintf('<div style="%s">%s</div>',$style, $output);
|
|
} else {
|
|
$style .= "float:left;";
|
|
$output = sprintf('<div class="clear"></div><div style="%s">%s</div>',$style, $output);
|
|
}
|
|
}
|
|
|
|
if(__DEBUG__==3) $GLOBALS['__widget_excute_elapsed__'] += getMicroTime() - $start;
|
|
|
|
if($args->widget_sequence && $args->widget_cache) {
|
|
$cache_path = './files/cache/widget_cache/';
|
|
$cache_file = sprintf('%s%d.%s.cache', $cache_path, $args->widget_sequence, Context::getLangType());
|
|
|
|
FileHandler::writeFile($cache_file, $output);
|
|
}
|
|
|
|
return $output;
|
|
}
|
|
|
|
/**
|
|
* @brief 위젯 객체를 return
|
|
**/
|
|
function getObject($widget) {
|
|
if(!$GLOBALS['_xe_loaded_widgets_'][$widget]) {
|
|
// 일단 위젯의 위치를 찾음
|
|
$oWidgetModel = &getModel('widget');
|
|
$path = $oWidgetModel->getWidgetPath($widget);
|
|
|
|
// 위젯 클래스 파일을 찾고 없으면 에러 출력 (html output)
|
|
$class_file = sprintf('%s%s.class.php', $path, $widget);
|
|
if(!file_exists($class_file)) return sprintf(Context::getLang('msg_widget_is_not_exists'), $widget);
|
|
|
|
// 위젯 클래스를 include
|
|
require_once($class_file);
|
|
|
|
// 객체 생성
|
|
$eval_str = sprintf('$oWidget = new %s();', $widget);
|
|
@eval($eval_str);
|
|
if(!is_object($oWidget)) return sprintf(Context::getLang('msg_widget_object_is_null'), $widget);
|
|
|
|
if(!method_exists($oWidget, 'proc')) return sprintf(Context::getLang('msg_widget_proc_is_null'), $widget);
|
|
|
|
$oWidget->widget_path = $path;
|
|
|
|
$GLOBALS['_xe_loaded_widgets_'][$widget] = $oWidget;
|
|
}
|
|
return $GLOBALS['_xe_loaded_widgets_'][$widget];
|
|
}
|
|
|
|
}
|
|
?>
|