[xoops-cvslog 2126] CVS update: xoops2jp/html/modules/base/actions

Back to archive index

Minahito minah****@users*****
2006年 2月 3日 (金) 01:58:41 JST


Index: xoops2jp/html/modules/base/actions/OnlineAction.class.php
diff -u /dev/null xoops2jp/html/modules/base/actions/OnlineAction.class.php:1.1.2.1
--- /dev/null	Fri Feb  3 01:58:41 2006
+++ xoops2jp/html/modules/base/actions/OnlineAction.class.php	Fri Feb  3 01:58:41 2006
@@ -0,0 +1,39 @@
+<?php
+
+require_once XOOPS_MODULE_PATH . "/base/class/PageNavigator.class.php";
+require_once XOOPS_MODULE_PATH . "/base/class/AbstractListAction.class.php";
+require_once XOOPS_MODULE_PATH . "/base/forms/OnlineFilterForm.class.php";
+
+class Legacy_OnlineAction extends Legacy_AbstractListAction
+{
+	function &_getHandler()
+	{
+		$handler =& xoops_getmodulehandler('online', 'base');
+		return $handler;
+	}
+
+	function &_getFilterForm(&$navi)
+	{
+		$filter =& new Legacy_OnlineFilterForm($navi);
+		return $filter;
+	}
+
+	function _getBaseUrl()
+	{
+		return "./index.php?action=OnlineList";
+	}
+
+	function executeViewIndex(&$controller, &$xoopsUser, &$render)
+	{
+		$render->setTemplateName("legacy_misc_online.html");
+		
+		foreach (array_keys($this->mObjects) as $key) {
+			$this->mObjects[$key]->loadModule();
+		}
+		
+		$render->setAttribute("objects", $this->mObjects);
+		$render->setAttribute("pageNavi", $this->mNavi);
+	}
+}
+
+?>


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