Answer the question
In order to leave comments, you need to log in
Is it possible to put a validator in rules in yii according to a certain condition?
Good afternoon,
There is a rule:
,
Answer the question
In order to leave comments, you need to log in
1. You can write your own validator and check whatever your heart desires in it.
2. Before validation, you can initialize the model with the passed role_id and use additional conditions in the validator, like:
[
['state', 'required', 'when' => function($model) {
return $model->role_id == '2';
}],
]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question