Minahito
minah****@users*****
2006年 9月 24日 (日) 23:05:57 JST
Index: xoops2jp/html/kernel/XCube_Root.class.php diff -u xoops2jp/html/kernel/XCube_Root.class.php:1.1.2.18 xoops2jp/html/kernel/XCube_Root.class.php:1.1.2.19 --- xoops2jp/html/kernel/XCube_Root.class.php:1.1.2.18 Fri Sep 1 12:11:46 2006 +++ xoops2jp/html/kernel/XCube_Root.class.php Sun Sep 24 23:05:57 2006 @@ -1,7 +1,7 @@ <?php /** * @package XCube - * @version $Id: XCube_Root.class.php,v 1.1.2.18 2006/09/01 03:11:46 minahito Exp $ + * @version $Id: XCube_Root.class.php,v 1.1.2.19 2006/09/24 14:05:57 minahito Exp $ */ /** @@ -44,8 +44,6 @@ */ var $mThemeName = null; - var $mCacheSystem = null; - function XCube_Root() { } @@ -273,22 +271,6 @@ } /** - * Return the instance of the cache system. The instance of cache system - * is singleton in XOOPS Cube. This member function is getInstance() at - * singleton pattern. - * - * @return XCube_CacheSystem - */ - function &getCacheSystem() - { - if (!is_object($this->mCacheSystem)) { - $this->mCacheSystem =& $this->_createInstance($this->mSiteConfig['Cube']['CacheSystem.class'], $this->mSiteConfig['Cube']['CacheSystem.path']); - } - - return $this->mCacheSystem; - } - - /** * Return the instance of the render system by the name. If the render * system specified by $name doesn't exist, raise fatal error. This member * function does creating the instance and calling prepare().