Minahito
minah****@users*****
2006年 1月 10日 (火) 08:24:50 JST
Index: xoops2jp/html/modules/user/class/mailjob.php diff -u /dev/null xoops2jp/html/modules/user/class/mailjob.php:1.1.2.1 --- /dev/null Tue Jan 10 08:24:49 2006 +++ xoops2jp/html/modules/user/class/mailjob.php Tue Jan 10 08:24:49 2006 @@ -0,0 +1,30 @@ +<?php + +class UserMailjobObject +{ + function UserMailjobObject() + { + $this->initVar('id', XOBJ_DTYPE_INT, '', true); + $this->initVar('lastlogin', XOBJ_DTYPE_INT, '', false); + $this->initVar('lastlogin_flag', XOBJ_DTYPE_INT, '0', true); + $this->initVar('mailok', XOBJ_DTYPE_INT, '0', true); + $this->initVar('activeuser', XOBJ_DTYPE_INT, '0', true); + $this->initVar('registdate', XOBJ_DTYPE_INT, '0', false); + $this->initVar('registdate_flag', XOBJ_DTYPE_INT, '0', true); + $this->initVar('sender', XOBJ_DTYPE_TXTBOX, '', false, 255, true); + $this->initVar('email', XOBJ_DTYPE_TXTBOX, '', false, 255, true); + $this->initVar('subject', XOBJ_DTYPE_TXTBOX, '', true, 255, true); + $this->initVar('body', XOBJ_DTYPE_TXTAREA, '', true, null, true); + $this->initVar('by_pm', XOBJ_DTYPE_INT, '0', true); + $this->initVar('by_email', XOBJ_DTYPE_INT, '0', true); + } +} + +class UserMailjobHandler +{ + $mTable = "mailjob"; + $mPrimary = "id"; + $mClass = "UserMailjobObject"; +} + +?>