diff --git a/modules/page/page.mobile.php b/modules/page/page.mobile.php index 3becaa466..d7e706307 100644 --- a/modules/page/page.mobile.php +++ b/modules/page/page.mobile.php @@ -3,26 +3,6 @@ class pageMobile extends pageView { - function init() - { - switch($this->module_info->page_type) - { - case 'WIDGET' : - { - $this->cache_file = sprintf("%sfiles/cache/page/%d.%s.%s.m.cache.php", RX_BASEDIR, $this->module_info->module_srl, Context::getLangType(), Context::getSslStatus()); - $this->interval = (int)($this->module_info->page_caching_interval); - break; - } - case 'OUTSIDE' : - { - $this->cache_file = sprintf("./files/cache/opage/%d.%s.m.cache.php", $this->module_info->module_srl, Context::getSslStatus()); - $this->interval = (int)($this->module_info->page_caching_interval); - $this->path = $this->module_info->mpath ?: $this->module_info->path; - break; - } - } - } - function dispPageIndex() { // Variables used in the template Context:: set() @@ -51,36 +31,34 @@ class pageMobile extends pageView // Arrange a widget ryeolro if($this->module_info->mcontent) { - $cache_file = sprintf("%sfiles/cache/page/%d.%s.m.cache.php", RX_BASEDIR, $this->module_info->module_srl, Context::getLangType()); - $interval = (int)($this->module_info->page_caching_interval); - if($interval>0) + if($this->interval>0) { - if(!file_exists($cache_file) || filesize($cache_file) < 1) + if(!file_exists($this->cache_file) || filesize($this->cache_file) < 1) { $mtime = 0; } else { - $mtime = filemtime($cache_file); + $mtime = filemtime($this->cache_file); } - if($mtime + $interval*60 > $_SERVER['REQUEST_TIME']) + if($mtime + $this->interval*60 > $_SERVER['REQUEST_TIME']) { - $page_content = FileHandler::readFile($cache_file); + $page_content = FileHandler::readFile($this->cache_file); $page_content = str_replace('