Minahito
minah****@users*****
2006年 10月 21日 (土) 20:08:34 JST
Index: xoops2jp/html/core/XCube_HttpContext.class.php diff -u xoops2jp/html/core/XCube_HttpContext.class.php:1.1.2.4 xoops2jp/html/core/XCube_HttpContext.class.php:1.1.2.5 --- xoops2jp/html/core/XCube_HttpContext.class.php:1.1.2.4 Sat Oct 7 17:19:39 2006 +++ xoops2jp/html/core/XCube_HttpContext.class.php Sat Oct 21 20:08:34 2006 @@ -1,7 +1,7 @@ <?php /** * @package XCube - * @version $Id: XCube_HttpContext.class.php,v 1.1.2.4 2006/10/07 08:19:39 minahito Exp $ + * @version $Id: XCube_HttpContext.class.php,v 1.1.2.5 2006/10/21 11:08:34 minahito Exp $ */ define("XCUBE_CONTEXT_TYPE_DEFAULT", "web_browser"); @@ -39,6 +39,14 @@ * @var string */ var $mType = XCUBE_CONTEXT_TYPE_DEFAULT; + + /** + * The theme is one in one time of request. + * A decided theme is registered with this property + * + * @access private + */ + var $mThemeName = null; function XCube_HttpContext() { @@ -119,6 +127,28 @@ { return $this->mUser; } + + /** + * Set the theme name. + * + * @param $theme string + * @deprecated + */ + function setThemeName($theme) + { + $this->mThemeName = $theme; + } + + /** + * Return the theme name. + * + * @return string + * @deprecated + */ + function getThemeName() + { + return $this->mThemeName; + } } /**