mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 03:01:43 +09:00
NHN developers@xpressengine.com http://xpressengine.com/ git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7676 201d5d3c-b55e-5fd7-737f-ddc643e51545
54 lines
2 KiB
PHP
54 lines
2 KiB
PHP
<?php
|
|
/**
|
|
* @class pageView
|
|
* @author NHN (developers@xpressengine.com)
|
|
* @brief page 모듈의 view 클래스
|
|
**/
|
|
|
|
class pageView extends page {
|
|
|
|
var $module_srl = 0;
|
|
var $list_count = 20;
|
|
var $page_count = 10;
|
|
|
|
/**
|
|
* @brief 초기화
|
|
**/
|
|
function init() {
|
|
// 템플릿 경로 구함 (page의 경우 tpl에 관리자용 템플릿 모아놓음)
|
|
$this->setTemplatePath($this->module_path.'tpl');
|
|
}
|
|
|
|
/**
|
|
* @brief 일반 요청시 출력
|
|
**/
|
|
function dispPageIndex() {
|
|
// 템플릿에서 사용할 변수를 Context::set()
|
|
if($this->module_srl) Context::set('module_srl',$this->module_srl);
|
|
|
|
// 캐시 파일 지정
|
|
$cache_file = sprintf("%sfiles/cache/page/%d.%s.cache.php", _XE_PATH_, $this->module_info->module_srl, Context::getLangType());
|
|
$interval = (int)($this->module_info->page_caching_interval);
|
|
if($interval>0) {
|
|
if(!file_exists($cache_file)) $mtime = 0;
|
|
else $mtime = filemtime($cache_file);
|
|
|
|
if($mtime + $interval*60 > time()) {
|
|
$page_content = FileHandler::readFile($cache_file);
|
|
} else {
|
|
$oWidgetController = &getController('widget');
|
|
$page_content = $oWidgetController->transWidgetCode($this->module_info->content);
|
|
FileHandler::writeFile($cache_file, $page_content);
|
|
}
|
|
} else {
|
|
if(file_exists($cache_file)) FileHandler::removeFile($cache_file);
|
|
$page_content = $this->module_info->content;
|
|
}
|
|
|
|
Context::set('module_info', $this->module_info);
|
|
Context::set('page_content', $page_content);
|
|
|
|
$this->setTemplateFile('content');
|
|
}
|
|
}
|
|
?>
|