panwenbin/yii2-eithervalidator

Yii2 validator for either attributes is required

0.0.1 2017-01-02 08:10 UTC

This package is not auto-updated.

Last update: 2024-05-20 13:43:13 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')
    ]