vote up 1 vote down star

This is my form: I want to make sure that AT LEAST one of the name/email pairs are filled in, so I'm working on a custom validation rule in my model.

alt text

I originally thought it would a simple case of making the first name/email pair mandatory, but this doesn't cover the other fields if someone fills in the third one for example, and omits the email.

Also, I only need to check for a valid email address if the corresponding friend field is filled in.

Am I overthinking this? I think I need some kind of interaction between the rules, but I'm stuck hard.

flag

3 Answers

vote up 0 vote down

place your validation logic inside beforeValidate callback.

link|flag
I can see how that would be called before each validation, but I'm struggling to see how that would help my specific case. – Pickledegg Jul 15 at 11:55
vote up 1 vote down

I would write a custom validation method for this purpose: http://book.cakephp.org/view/150/Custom-Validation-Rules#Adding-your-own-Validation-Methods-152

link|flag
Hi, dhofstet. I read through that section before posting, but that simply demonstrates how to write a rule for one specific field. I need to 1)Check that a friend is populated 2)If it is check that the corresponding email field is populated & valid. – Pickledegg Jul 15 at 11:57
Yes, you define a rule for one specific field, however, with $this->data you can access all data from within your validation method. So the field name is just used to trigger the validation method. – dhofstet Jul 15 at 14:23
To dhofstet's point, you could create a Custom Validation method to loop through your $this->data['Friend'][]['name'] array and do what's necessary (return false is an email is missing, etc.) – Darren Newton Jul 15 at 14:29
vote up 0 vote down

How are your fields being generated? I assume you're using something like:

<?php echo $form->input('Friend.name'); ?> [html stuff] <?php echo $form->input('Friend.email'); ?>

Since doing that several times within a page will produce duplicate ids (like, "FriendName" would be the resulting ID for each field generated by <?php echo $form->input('Friend.name'); ?>), you're probably going to have to add a number to each field name as you're generating them and then loop over $this->data['Friend'] in your controller and invalidate the offending fields as you find them (if the name is present, but the email is not, as you say).

I don't think there's a built-in way for cake to handle a situation like this, but I've been wrong before!

link|flag
Hi inkedmn, heres how I'm generating the fields: pastebin.com/m44277054 As you can see they are named data[Friend][0][name] etc. – Pickledegg Jul 16 at 9:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.