chinese-journal/yii/protected/models/User.php

50 lines
1.4 KiB
PHP
Raw Permalink Normal View History

2014-11-21 08:26:20 +00:00
<?php
class User extends CActiveRecord
{
2014-11-22 13:14:22 +00:00
public $verifyCode;
2014-11-21 08:26:20 +00:00
public static function model($className=__CLASS__)
{
return parent::model($className);
}
public function tableName()
{
return 'tbl_user';
}
public function rules()
{
return array(
2014-11-22 13:14:22 +00:00
array('username, password, email', 'required', 'message'=>'{attribute} ' . Yii::t('app', 'Field should not be blank')),
array('username, password, email', 'length', 'max'=>45, 'tooLong'=>'{attribute} ' . Yii::t('app', 'Line is too long')),
array('email', 'email', 'message'=>Yii::t('app', 'Email address is not correct')),
array('username, email', 'unique'),
array('verifyCode', 'captcha', 'allowEmpty'=>false, 'message'=>Yii::t('app', 'Confirmation code is not correct')),
2014-11-21 08:26:20 +00:00
);
}
2014-11-22 13:14:22 +00:00
public function unique($attribute,$params)
{
if(!$this->hasErrors())
{
$count = user::model()->count($attribute . '=:attribute', array('attribute'=>$this->attributes[$attribute]));
if ($count != 0)
$this->addError($attribute, Yii::t('app', 'User {attribute} is already registered in system'), array('{attribute}' => $this->attributes[$attribute]));
}
}
function attributeLabels(){
return array(
'username' => Yii::t('app', 'Username:'),
'password' => Yii::t('app', 'Password:'),
'email' => Yii::t('app', 'Email:'),
'verifyCode' => Yii::t('app', 'Confirmation code:'),
);
}
2014-11-21 08:26:20 +00:00
}