Minahito
minah****@users*****
2005年 11月 29日 (火) 16:14:19 JST
Index: xoops2jp/html/kernel/XCube_Root.class.php diff -u xoops2jp/html/kernel/XCube_Root.class.php:1.1.2.3 xoops2jp/html/kernel/XCube_Root.class.php:1.1.2.4 --- xoops2jp/html/kernel/XCube_Root.class.php:1.1.2.3 Sat Nov 26 16:10:52 2005 +++ xoops2jp/html/kernel/XCube_Root.class.php Tue Nov 29 16:14:19 2005 @@ -1,6 +1,6 @@ <?php /** - * @version $Id: XCube_Root.class.php,v 1.1.2.3 2005/11/26 07:10:52 minahito Exp $ + * @version $Id: XCube_Root.class.php,v 1.1.2.4 2005/11/29 07:14:19 minahito Exp $ * @package Cube */ @@ -46,6 +46,16 @@ */ var $ContentManager=null; + /** + * THIS IS TEST + * + * Why this is public is that PHP4 does not give property overload to us. + * This naming rule is test, too. + * + * @access public + */ + var $ModifierManager=null; + function XCube_Root() { } @@ -197,6 +207,16 @@ { return $this->mServiceManager; } + + function setModifierManager(&$modifierManager) + { + $this->ModifierManager=&$modifierManager; + } + + function &getModifierManager() + { + return $this->ModifierManager; + } }