[xoops-cvslog 5657] CVS update: xoops2jp/html/modules/base/admin/blocks

アーカイブの一覧に戻る

Minahito minah****@users*****
2006年 11月 7日 (火) 17:04:29 JST


Index: xoops2jp/html/modules/base/admin/blocks/AdminSideMenu.class.php
diff -u xoops2jp/html/modules/base/admin/blocks/AdminSideMenu.class.php:1.1.2.10.2.3 xoops2jp/html/modules/base/admin/blocks/AdminSideMenu.class.php:removed
--- xoops2jp/html/modules/base/admin/blocks/AdminSideMenu.class.php:1.1.2.10.2.3	Sat Oct 14 02:50:57 2006
+++ xoops2jp/html/modules/base/admin/blocks/AdminSideMenu.class.php	Tue Nov  7 17:04:29 2006
@@ -1,98 +0,0 @@
-<?php
-
-if (!defined('XOOPS_ROOT_PATH')) exit();
-
-/**
- * This is test menu block for control panel of legacy module.
- * This loads module objects by a permission of the current user.
- * Then this load module's adminmenu and module's information.
- *
- * [ASSIGN]
- *  Array of module objects.
- * 
- * @package legacy
- */
-class Legacy_AdminSideMenu extends Legacy_AbstractBlockProcedure
-{
-	var $mModules = array();
-	
-	/**
-	 * protected, but read OK.
-	 * 
-	 * @access protected
-	 */
-	var $mCurrentModule = null;
-
-	function getName()
-	{
-		return "sidemenu";
-	}
-
-	function getTitle()
-	{
-		return "TEST: AdminSideMenu";
-	}
-	
-	function getEntryIndex()
-	{
-		return 0;
-	}
-
-	function enableCache()
-	{
-		return false;
-	}
-
-	function execute()
-	{
-		$root =& XCube_Root::getSingleton();
-		
-		$controller =& $root->mController;
-		$user =& $root->mController->mRoot->mContext->mXoopsUser;
-		$render =& $this->getRenderBuffer();
-		
-		$this->mCurrentModule =& $controller->mRoot->mContext->mXoopsModule;
-		
-		if ($this->mCurrentModule->get('dirname') == 'base') {
-			if (xoops_getrequest('action') == "help") {
-				$moduleHandler =& xoops_gethandler('module');
-				$t_module =& $moduleHandler->getByDirname(xoops_gethandler('dirname'));
-				if (is_object($t_module)) {
-					$this->mCurrentModule =& $t_module;
-				}
-			}
-		}
-		
-		$db=&$controller->getDB();
-
-		$mod = $db->prefix("modules");
-		$perm = $db->prefix("group_permission");
-		$groups = implode(",", $user->getGroups());
-						 
-		$sql = "SELECT DISTINCT ${mod}.mid FROM ${mod},${perm} " .
-		       "WHERE ${mod}.isactive=1 AND ${mod}.mid=${perm}.gperm_itemid AND ${perm}.gperm_name='module_admin' AND ${perm}.gperm_groupid IN (${groups}) " .
-		       "ORDER BY ${mod}.weight, ${mod}.mid";
-
-		$result=$db->query($sql);
-		
-		$handler =& xoops_gethandler('module');
-		
-		while($row = $db->fetchArray($result)) {
-			$xoopsModule =& $handler->get($row['mid']);
-			$module =& Legacy_Utils::createModule($xoopsModule);
-
-			$this->mModules[] =& $module;
-			unset($module);
-		}
-		
-		$render->setTemplateName('legacy_admin_block_sidemenu.html');
-		$render->setAttribute('modules', $this->mModules);
-		$render->setAttribute('currentModule', $this->mCurrentModule);
-		
-		$renderSystem =& $root->getRenderSystem($this->getRenderSystemName());
-		
-		$renderSystem->renderBlock($render);
-	}
-}
-
-?>
\ No newline at end of file
Index: xoops2jp/html/modules/base/admin/blocks/AdminActionSearch.class.php
diff -u xoops2jp/html/modules/base/admin/blocks/AdminActionSearch.class.php:1.1.2.4.2.2 xoops2jp/html/modules/base/admin/blocks/AdminActionSearch.class.php:removed
--- xoops2jp/html/modules/base/admin/blocks/AdminActionSearch.class.php:1.1.2.4.2.2	Thu Oct  5 18:06:54 2006
+++ xoops2jp/html/modules/base/admin/blocks/AdminActionSearch.class.php	Tue Nov  7 17:04:29 2006
@@ -1,63 +0,0 @@
-<?php
-
-if (!defined('XOOPS_ROOT_PATH')) exit();
-
-/**
- * This is test menu block for control panel of legacy module.
- *
- * [ASSIGN]
- *  No
- * 
- * @package legacy
- */
-class Legacy_AdminActionSearch extends Legacy_AbstractBlockProcedure
-{
-	function getName()
-	{
-		return "action_search";
-	}
-
-	function getTitle()
-	{
-		return "TEST: AdminActionSearch";
-	}
-
-	function getEntryIndex()
-	{
-		return 0;
-	}
-
-	function enableCached()
-	{
-		return false;
-	}
-
-	function execute()
-	{
-		$render =& $this->getRenderBuffer();
-		$render->setTemplateName('legacy_admin_block_actionsearch.html');
-		
-		$root =& XCube_Root::getSingleton();
-		$renderSystem =& $root->getRenderSystem($this->getRenderSystemName());
-		
-		$renderSystem->renderBlock($render);
-	}
-
-	function hasResult()
-	{
-		return true;
-	}
-
-	function &getResult()
-	{
-		$dmy = "dummy";
-		return $dmy;
-	}
-
-	function getRenderSystemName()
-	{
-		return 'Legacy_AdminRenderSystem';
-	}
-}
-
-?>
\ No newline at end of file
Index: xoops2jp/html/modules/base/admin/blocks/index.html
diff -u xoops2jp/html/modules/base/admin/blocks/index.html:1.1.2.1 xoops2jp/html/modules/base/admin/blocks/index.html:removed
--- xoops2jp/html/modules/base/admin/blocks/index.html:1.1.2.1	Mon Mar 27 11:41:52 2006
+++ xoops2jp/html/modules/base/admin/blocks/index.html	Tue Nov  7 17:04:29 2006
@@ -1 +0,0 @@
- <script>history.go(-1);</script>
\ No newline at end of file


xoops-cvslog メーリングリストの案内
アーカイブの一覧に戻る