NobuNobu
nobun****@users*****
2006年 2月 5日 (日) 22:12:16 JST
Index: xoops2jp/html/modules/user/forms/LostpassEditForm.class.php diff -u xoops2jp/html/modules/user/forms/LostpassEditForm.class.php:1.1.2.1 xoops2jp/html/modules/user/forms/LostpassEditForm.class.php:removed --- xoops2jp/html/modules/user/forms/LostpassEditForm.class.php:1.1.2.1 Tue Jan 17 19:37:58 2006 +++ xoops2jp/html/modules/user/forms/LostpassEditForm.class.php Sun Feb 5 22:12:16 2006 @@ -1,38 +0,0 @@ -<?php - -require_once XOOPS_ROOT_PATH . "/class/XCube_ActionForm.class.php"; - -/** - * This class is generated by makeActionForm tool. - */ -class LostpassEditForm extends XCube_ActionForm -{ - function getTokenName() - { - return "module.user.LostpassEditForm.TOKEN"; - } - - function prepare() - { - // - // Set form properties - // - $this->mFormProperties['email'] =& new XCube_StringProperty('email'); - - // - // Set field properties - // - $this->mFieldProperties['email'] =& new XCube_FieldProperty($this); - $this->mFieldProperties['email']->setDependsByArray(array('required')); - $this->mFieldProperties['email']->addMessage('required', _MD_USER_ERROR_REQUIRED, _MD_USER_LANG_EMAIL); - } - - function validateEmail() - { - if ($this->get('email') != null && !preg_match("/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+([\.][a-z0-9-]+)+$/i",$this->get('email'))) { - $this->addErrorMessage(_MD_USER_ERROR_EMAIL_FORMAT); - } - } -} - -?>