cake-php@googlegroups.com
[Top] [All Lists]

Re: Data validation: check whether at least one of many fields has a val

Subject: Re: Data validation: check whether at least one of many fields has a value?
From: Jeremy Burns | Class Outfit
Date: Tue, 7 Sep 2010 14:12:36 +0100
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;
}

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 cake-php@xxxxxxxxxxxxxxxx
To unsubscribe from this group, send email to
cake-php+unsubscribe@xxxxxxxxxxxxxxxx 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 cake-php@xxxxxxxxxxxxxxxx
To unsubscribe from this group, send email to
cake-php+unsubscribe@xxxxxxxxxxxxxxxx For more options, visit this group at http://groups.google.com/group/cake-php?hl=en
<Prev in Thread] Current Thread [Next in Thread>