[xoops-cvslog 5288] CVS update: xoops2jp/html/modules/legacy/preload

Back to archive index

Minahito minah****@users*****
2006年 10月 15日 (日) 01:43:02 JST


Index: xoops2jp/html/modules/legacy/preload/ThemeSelect.class.php
diff -u xoops2jp/html/modules/legacy/preload/ThemeSelect.class.php:1.1.2.1 xoops2jp/html/modules/legacy/preload/ThemeSelect.class.php:1.1.2.2
--- xoops2jp/html/modules/legacy/preload/ThemeSelect.class.php:1.1.2.1	Sat Oct 14 23:55:26 2006
+++ xoops2jp/html/modules/legacy/preload/ThemeSelect.class.php	Sun Oct 15 01:43:02 2006
@@ -12,28 +12,28 @@
  * specified theme is selectable. Functions should be added to this delegate in
  * constructor, because the delegate is called in preBlockFilter().
  */
-class Base_ThemeSelect extends XCube_ActionFilter
+class Legacy_ThemeSelect extends XCube_ActionFilter
 {
 	/**
 	 * @var XCube_Delegate
 	 */
 	var $mIsSelectableTheme = null;
 	
-	function Base_ThemeSelect(&$controller)
+	function Legacy_ThemeSelect(&$controller)
 	{
 		//
 		// TODO remove
 		//
 		parent::XCube_ActionFilter($controller);
 		$this->mIsSelectableTheme =& new XCube_Delegate();
-		$this->mIsSelectableTheme->register('Base_ThemeSelect.IsSelectableTheme');
+		$this->mIsSelectableTheme->register('Legacy_ThemeSelect.IsSelectableTheme');
 		
 		$controller->mSetupUser->add(array(&$this, 'doChangeTheme'));
 	}
 	
 	function preBlockFilter()
 	{
-		$this->mController->mRoot->mDelegateManager->add("Site.CheckLogin.Success", "Base_ThemeSelect::callbackCheckLoginSuccess");
+		$this->mController->mRoot->mDelegateManager->add("Site.CheckLogin.Success", "Legacy_ThemeSelect::callbackCheckLoginSuccess");
 	}
 	
 	/**


xoops-cvslog メーリングリストの案内
Back to archive index