Here's an example:

The validation rule is:

                'phone_home' => array(
                        'hasOnePhone' => array(
                                'rule' => 'hasOnePhone',
                                'message' => 'You must enter at least one phone 
number.',
                                'last' => true
                        )
                ),

The model function is:

function hasOnePhone() {
        if (
                $this->data['address']['phone_home'] != null
                || $this->data['address']['phone_work'] != null
                || $this->data['address']['phone_cell'] != null
        ):
                return true;
        endif;
}

Jeremy Burns
Class Outfit

[email protected]
http://www.classoutfit.com

On 7 Sep 2010, at 13:57, psybear83 wrote:

> Hi all
> 
> I'm seeing how to have many validation rules for one field everywhere,
> but I couldn't figure out how to have on validation rule that depends
> on many fields?!
> 
> I have a model with 3 fields. I want to check that at least one of
> these fields has a value.
> 
> How can I achieve this?
> 
> Thanks, Josh
> 
> Check out the new CakePHP Questions site http://cakeqs.org and help others 
> with their CakePHP related questions.
> 
> You received this message because you are subscribed to the Google Groups 
> "CakePHP" group.
> To post to this group, send email to [email protected]
> To unsubscribe from this group, send email to
> [email protected] For more options, visit this group at 
> http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en

Reply via email to