Minahito
minah****@users*****
2005年 12月 26日 (月) 21:18:42 JST
Index: xoops2jp/html/kernel/XCube_Root.class.php diff -u xoops2jp/html/kernel/XCube_Root.class.php:1.1.2.6 xoops2jp/html/kernel/XCube_Root.class.php:1.1.2.7 --- xoops2jp/html/kernel/XCube_Root.class.php:1.1.2.6 Wed Nov 30 14:01:45 2005 +++ xoops2jp/html/kernel/XCube_Root.class.php Mon Dec 26 21:18:42 2005 @@ -1,6 +1,6 @@ <?php /** - * @version $Id: XCube_Root.class.php,v 1.1.2.6 2005/11/30 05:01:45 minahito Exp $ + * @version $Id: XCube_Root.class.php,v 1.1.2.7 2005/12/26 12:18:42 minahito Exp $ * @package Cube */ @@ -56,6 +56,14 @@ */ var $ModifierManager=null; + /** + * The theme is one in one time of request. + * A decided theme is registered with this property + * + * @access private + */ + var $mThemeName = null; + function XCube_Root() { } @@ -217,7 +225,16 @@ { return $this->ModifierManager; } -} + function setThemeName($theme) + { + $this->mThemeName = $theme; + } + + function getThemeName() + { + return $this->mThemeName; + } +} ?> \ No newline at end of file