Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Yii password repeat field

I want password repeat field in my web-application based on Yii when create and update user. When create I want both fields to be required and when update, user can left these fields empty(password will be the same) or enter new password and confirm it. How can I dot it?

like image 817
Most Wanted Avatar asked Nov 13 '12 15:11

Most Wanted


1 Answers

First up, you need to create a new attribute in your model (in this example we call it repeatpassword):

class MyModel extends CActiveRecord{
    public $repeatpassword;
    ...

Next, you need to define a rule to ensure it matches your existing password attribute :

    public function rules() {
            return array(
                array('password', 'length', 'max'=>250),
                array('repeatpassword', 'compare', 'compareAttribute'=>'password', 'message'=>"Passwords don't match"),
                ...
            );
    }

Now, when a new model is created, the model will not validate unless the password and repeatpassword attributes match. As you mentioned, this is fine for creating a new record, but you don't want to validate the matched password on the update. To create this functionality, we can use model scenarios

We simply change the repeatpassword rule as seen above to have an additional parmanter:

...
array('repeatpassword', 'compare', 'compareAttribute'=>'password', 'message'=>"Passwords don't match",'on'=>'create'),
...

All that is left to do now, is when declaring your model on for the create function, use:

$model = new MyModel('create');

Instead of the normal:

$model = new MyModel;
like image 150
Brett Gregson Avatar answered Sep 29 '22 15:09

Brett Gregson