panwenbin / yii2-eithervalidator
Yii2 validator for either attributes is required
0.0.1
2017-01-02 08:10 UTC
Requires
- php: >=5.4.0
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2026-03-09 23:06:52 UTC
README
Yii2 validator for either attributes is required
Installation
composer require "panwenbin/yii2-eithervalidator"
Usage
Add a rule similar to the following to rules of the model
[
['email'],
EitherValidator::className(),
'eitherAttributes' => ['phone'],
'message' => Yii::t('app', 'Either attribute {attribute}, {either_attributes} is required')
]