XPressME Integration Kit

Trac


Ignore:
Timestamp:
May 23, 2011, 3:03:57 PM (13 years ago)
Author:
toemon
Message:

ConfigFromXoopsクラスを廃止し、modInfoクラスを使用するように変更
WP2.2以下で使用するテンプレートold_templateの廃止

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Ver3.0/xpressme_integration_kit/include/xpress_cache.php

    r719 r757  
    44if(!function_exists("cache_is_writable")): 
    55        function cache_is_writable(){ 
    6                 global $xoops_config; 
    7                 $cache_dir = $xoops_config->xoops_cache_path . '/'; 
     6                global $modInfo; 
     7                $cache_dir = $modInfo->get_xoops_cache_path() . '/'; 
    88                $filename = $cache_dir .'xpress_cache_test.txt'; 
    99                $fp = @fopen($filename, "w"); 
     
    3030    function xpress_cache_read($mydirname,$collation_key) 
    3131    { 
    32         global $xoops_config; 
     32        global $modInfo; 
    3333         
    34         $cache_dir = $xoops_config->xoops_cache_path . '/'; 
     34        $cache_dir = $modInfo->get_xoops_cache_path() . '/'; 
    3535        $filename = $cache_dir .$mydirname . '_' . $collation_key; 
    3636        if (xpress_cache_found($filename)) { 
     
    4545    function xpress_cache_write($mydirname,$collation_key,$content) 
    4646    { 
    47                 global $xoops_config; 
    48                 $cache_dir = $xoops_config->xoops_cache_path . '/'; 
     47                global $modInfo; 
     48                $cache_dir = $modInfo->get_xoops_cache_path() . '/'; 
    4949                $cache_time = 0; 
    5050 
     
    6262    function xpress_cache_clear($mydirname) 
    6363    { 
    64                 global $xoops_config; 
    65                 $cache_dir = $xoops_config->xoops_cache_path . '/'; 
     64                global $modInfo; 
     65                $cache_dir = $modInfo->get_xoops_cache_path() . '/'; 
    6666                $cache_time = 0; 
    6767        if ($dh = opendir($cache_dir)) { 
Note: See TracChangeset for help on using the changeset viewer.