[xoops-cvslog 3990] CVS update: xoops2jp/html/modules/user/class

Back to archive index

Minahito minah****@users*****
2006年 8月 6日 (日) 01:45:56 JST


Index: xoops2jp/html/modules/user/class/online.php
diff -u /dev/null xoops2jp/html/modules/user/class/online.php:1.1.2.1
--- /dev/null	Sun Aug  6 01:45:56 2006
+++ xoops2jp/html/modules/user/class/online.php	Sun Aug  6 01:45:56 2006
@@ -0,0 +1,34 @@
+<?php
+
+if (!defined('XOOPS_ROOT_PATH')) exit();
+
+class UserOnlineObject extends XoopsSimpleObject
+{
+	var $mModule = null;
+	
+	function UserOnlineObject()
+	{
+		$this->initVar('online_uid', XOBJ_DTYPE_INT, '0', true);
+		$this->initVar('online_uname', XOBJ_DTYPE_STRING, '', true, 25);
+		$this->initVar('online_updated', XOBJ_DTYPE_INT, '0', true);
+		$this->initVar('online_module', XOBJ_DTYPE_INT, '0', true);
+		$this->initVar('online_ip', XOBJ_DTYPE_STRING, '', true, 15);
+	}
+	
+	function loadModule()
+	{
+		if ($this->get('online_module')) {
+			$handler =& xoops_gethandler('module');
+			$this->mModule =& $handler->get($this->get('online_module'));
+		}
+	}
+}
+
+class UserOnlineHandler extends XoopsObjectGenericHandler
+{
+	var $mTable = "online";
+	var $mPrimary = "";
+	var $mClass = "UserOnlineObject";
+}
+
+?>


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